Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / performance-tests / Pluggable / PP_Test.idl
blob9e6a9670fe63ea7e5c7cdf45f54972e30895cb6c
1 /* -*- C++ -*- */
2 interface Pluggable_Test
4 // = TITLE
5 // Defines an interface that encapsulates operations designed to
6 // test the TAO Pluggable Protocols implementation.
7 //
8 // = DESCRIPTION
9 // This interface encapsulates operations that send
10 // octets, voids, and octet sequences.
12 oneway void send_oneway ();
13 // Test the basic latency of a nil oneway operation.
15 void send_void ();
16 // Test the basic latency of a nil operation.
18 oneway void shutdown ();
19 // shutdown the application.
23 interface Pluggable_Test_Factory
25 // = TITLE
26 // Creates Pluggable_Test objects.
28 Pluggable_Test make_pluggable_test ();