summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Oneway_Send_Timeouts/Test.idl
blob: 2794efc1f03f9d4877ce5e47936d96e5d2a3a0f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id$

interface Test
{
  // sleep for the said time, unless u head from
  //  client earlier. If both sec and msec are 0,
  //  sleep untill client wakes u up.
  oneway void sleep (in long sec, in long msec);
  void unsleep ();

  // the server will ignore the message string.
  // An interface to send variable length strings across the
  //  physical layer.
  oneway void dummy_one_way (in string msg);

  void dummy_two_way ();

  void shutdown ();
};