summaryrefslogtreecommitdiff
path: root/TAO/tests/Oneways_Invoking_Twoways/Test.idl
blob: 9e23b7b2c9e08da38fef3a58f3bbe7b738fc3b91 (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
25
26
27
28
//
// $Id$
//

module Test
{
  interface Receiver {

    /// Receive a call and  send back the number of calls received..
    long  receive_call ();

    /// Get the number of calls that every thread would make...
    long get_call_count ();

  };

  interface Sender {

    /// Ping message..
    void ping ();

    /// Number of active objects trying to use this interface
    oneway void active_objects (in short ao);

    /// Send a ready message
    oneway void send_ready_message (in Receiver callback);
    };
};