Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / performance-tests / Memory / IORsize / Test.idl
blobd5472cffc309c1101ef7ddb90ef298d331e45054
1 /// Put the interfaces in a module, to avoid global namespace pollution
2 module Test
4 /// A very simple interface, sequences of which will be transferred
5 /// from the client to the server.
6 interface Foo
8 };
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
16 /// server
17 void send_objref (in Test::PayLoad p);
19 /// A method to shutdown the ORB
20 /**
21 * This method is used to simplify the test shutdown process
23 oneway void shutdown ();