summaryrefslogtreecommitdiff
path: root/TAO/tests/GIOP_Fragments/PMB_With_Fragments/Test.idl
blob: 902aed29cf40cbce74ce4d4cb613fb277ed4e9a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// $Id$
//

module Test
{
  typedef sequence<octet> Payload;

  interface Payload_Receiver
  {
    exception Invalid_Payload {
    };

    /// Send the data using a twoway operation
    void more_data (in Payload the_payload)
       raises (Invalid_Payload);

    /// Shudown the remote ORB
    oneway void shutdown ();
  };
};