4 #include
"FooException.idl"
8 /// void return-type, no arguments
11 /// void return-type, 1 "in" argument
12 void op2
(in long value
);
14 /// long return-type, 1 "in" argument
15 long op3
(in long value
);
17 /// one-way version of op2
18 oneway
void op4
(in long value
);
20 /// Operation that always raises an exception.
21 void op5
() raises
(FooException
);
23 /// Client calls this last. The last client to claim that it is
24 /// done will cause the server to shutdown.