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

module Test
{
  typedef sequence<octet> Payload;

  interface Payload_Receiver
  {
    /// Send the data using a twoway operat
    oneway void more_data (in Payload the_payload);

    /// operation used with SYNC_NONE clients. This is separated to avoid
    /// error reporting due to dropped messages. Drops are allowed in the
    /// sync_none case.
    oneway void sync_none_more_data (in Payload the_payload);
  };
};