1 /// Put the interfaces in a module, to avoid global namespace pollution
4 /// A very simple interface, sequences of which will be transferred
5 /// from the client to the server.
10 typedef sequence
<Foo
> PayLoad
;
12 /// A very simple interface for testing
13 interface Memory_Growth
15 /// A simple call which we will use to send BIG sequences to the
17 void send_objref
(in Test
::PayLoad p
);
19 /// A method to shutdown the ORB
21 * This method is used to simplify the test shutdown process
23 oneway
void shutdown
();