summaryrefslogtreecommitdiff
path: root/TAO/tests/TransportCurrent/lib/Current_Test.idl
blob: a7f00f7d29fe3214b8157bc41eb6f489df60a7b3 (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
30
31
32
33
34
35
36
37
38
// -*- IDL -*-

//=============================================================================
/**
 * @file   Current_Test.idl
 *
 * $Id$
 *
 * Simple IDL file to test TAO::TranspotCurrent
 * support.
 *
 * @author  Iliyan Jeliazkov <iliyan@ociweb.com>
 */
//=============================================================================



module Test
{
  module Transport
  {
    interface CurrentTest
    {

      const unsigned long ContextTag = 0xabcdef;

      void invoked_by_client ();

      void invoked_during_upcall ();

      long self_test ();

      oneway void shutdown ();
    };
  };
};