blob: 81c8cf604124c52f189639dd252ce8cbee956f10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
protocol PthreeDirections {
// sanity check that the three direction specifiers are being accepted
child:
async ChildMsg();
parent:
async ParentMsg();
both:
async BothMsg();
};
|