summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_Request_Muxing/Test.idl
blob: 9c87be0650802f20c57154b8fb5593d74ee1594c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// $Id$
//

module Test
{
  typedef sequence<octet> Payload;

  interface Payload_Receiver
  {
    /// Send the data using a oneway operation.
    oneway void more_data (in Payload the_payload, in boolean maybe_lost);

    void ping ();
  };
};