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

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