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

interface PingObject
{
  // = 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 PingObject 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
};