summaryrefslogtreecommitdiff
path: root/TAO/tao/Message_Semantics.h
blob: b14110cf639ec27978934bda72c1bad115d32533 (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
// -*- C++ -*-

//=============================================================================
/**
 *  @file Message_Semantics.h
 *
 *  @author  Johnny Willemsen  <jwillemsen@remedy.nl>
 */
//=============================================================================

#ifndef TAO_MESSAGE_SEMANTICS_H
#define TAO_MESSAGE_SEMANTICS_H

#include /**/ "ace/pre.h"

#include "tao/orbconf.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

struct TAO_Message_Semantics
  {
    enum Type
      {
        TAO_ONEWAY_REQUEST = 0,
        TAO_TWOWAY_REQUEST = 1,
        TAO_REPLY
      };

    enum Mode
      {
        TAO_SYNCH_MODE,
        TAO_ASYNCH_CALLBACK,
        TAO_ASYNCH_POLL
      };

    TAO_Message_Semantics ()
      : type_ (TAO_TWOWAY_REQUEST), mode_ (TAO_SYNCH_MODE) {}
    TAO_Message_Semantics (Type type)
      : type_ (type), mode_ (TAO_SYNCH_MODE) {}
    TAO_Message_Semantics (Type type, Mode mode)
      : type_ (type), mode_ (mode) {}
    TAO_Message_Semantics (const TAO_Message_Semantics& ms)
      : type_ (ms.type_), mode_ (ms.mode_) {}

    Type type_;
    Mode mode_;
  };

TAO_END_VERSIONED_NAMESPACE_DECL

#include /**/ "ace/post.h"

#endif /* TAO_MESSAGE_SEMANTICS_H */