summaryrefslogtreecommitdiff
path: root/TAO/tests/Oneway_Send_Timeouts/Test.idl
blob: e8d89500d3e11085cdc4ed8c7f3cd10b62feb671 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 ();
};