summaryrefslogtreecommitdiff
path: root/TAO/tests/Stack_Recursion/Test.idl
blob: 4904d6a3e39e0acff9460304a6849d5ede17b194 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

module Test
{
  typedef sequence<octet> Payload;

  interface Sender {

    /// Receive a big payload
    boolean get_data (in unsigned long size,
                      out Payload the_payload);

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

    /// Simple ping to the server
    void ping ();

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