summaryrefslogtreecommitdiff
path: root/TAO/tests/Nested_Event_Loop/test.idl
blob: 2a0de7543ad5d25a7efcc3511cc9b246d99683e2 (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
29
//
// $Id$
//

typedef sequence<octet> act;

interface client
{
  void loop (in unsigned long event_loop_depth,
             in unsigned long event_loop_iterations);

  oneway void oneway_no_op (in act act_for_iterations,
                            in act act_for_flag);

  void twoway_no_op ();
};

interface server
{
  void loop (in client remote_partner,
             in unsigned long event_loop_depth,
             in unsigned long event_loop_iterations);

  void no_op (in client remote_partner,
              in act act_for_iterations,
              in act act_for_flag);

  oneway void shutdown ();
};