summaryrefslogtreecommitdiff
path: root/TAO/tests/Faults/ping.idl
blob: ab91a1f3ab58e778c812325b5b944f84df97b0ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// $Id$
//

interface Ping
{
  // = DESCRIPTION
  //   An interface to ping-pong between two objects, it is used to
  //   test a very interesting use-case reported by Andreas Geisler.

  oneway void ping (in Ping callback);
  // The ping method, the server should respond by invoking <pong> on
  // the <callback> object

  oneway void pong ();
  // A response from the server

  oneway void shutdown ();
  // Shutdown the peer
};