summaryrefslogtreecommitdiff
path: root/TAO/tests/GIOP_Fragments/Java_Big_Request/Test.idl
blob: f3f34494c570fa0636ffdd4caaf1e670c0298ce7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

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 ();
  };
};