summaryrefslogtreecommitdiff
path: root/TAO/tests/Muxing/Test.idl
blob: af7010bd6c0060f033c18fa1dc4cb45e43b3f38f (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 Receiver {
    /// Receive a big payload
    void receive_data (in Payload the_payload);

    /// Return the number of messages received so far
    long get_event_count ();

    /// A method to shutdown the ORB
    oneway void shutdown ();
  };
};