4 exception FooException
{};
5 exception TestException
{};
9 /// void return-type, no arguments
12 /// void return-type, 1 "in" argument
13 void op2
(in long value
);
15 /// long return-type, no arguments
18 /// one-way version of op2
19 oneway
void op4
(in long value
);
21 /// Operation that always raises an exception.
22 void op5
() raises
(FooException
);
24 /// Client calls this last. It will shutdown the server.