summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Transport_Current/Framework/Current_Test.idl
blob: b53806bcda40b8c67b62cfd43fe12ba2899dc9e1 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// -*- IDL -*-

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

module TAO
{
  module Transport
  {
    interface CurrentTest
    {

      const unsigned long ContextTag = 0xabcdef;

      void invoked_by_client ();

      void invoked_during_upcall ();

      long self_test ();

      oneway void shutdown ();
    };
  };
};
// -*- IDL -*-

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

module TAO
{
  module Transport
  {
    interface CurrentTest
    {

      const unsigned long ContextTag = 0xabcdef;

      void invoked_by_client ();

      void invoked_during_upcall ();

      long self_test ();

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