summaryrefslogtreecommitdiff
path: root/TAO/tests/Oneways_Invoking_Twoways/Test.idl
blob: 45bd4d1e9f25f0214b656717b771467cc6754329 (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

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

    oneway void shutdown ();
  };

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

    oneway void shutdown ();
    };
};