summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_Request_Muxing/Test.idl
blob: 66c7d1c8cfe17d1795fef5349867ded633889dd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// $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);
  };
};