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

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