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

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