summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/QoSProperties.inl
blob: 6cf7f8f44faadbff8118d48329a23f02a5084cf0 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// -*- C++ -*-
//
// $Id$

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

ACE_INLINE
const TAO_Notify_Property_Short&
TAO_Notify_QoSProperties::event_reliability(void) const
{
  return this->event_reliability_;
}

ACE_INLINE
const TAO_Notify_Property_Short&
TAO_Notify_QoSProperties::connection_reliability(void) const
{
  return this->connection_reliability_;
}

ACE_INLINE
const TAO_Notify_Property_Short&
TAO_Notify_QoSProperties::priority(void) const
{
  return this->priority_;
}

ACE_INLINE
const TAO_Notify_Property_Time&
TAO_Notify_QoSProperties::timeout(void) const
{
  return this->timeout_;
}

ACE_INLINE
const TAO_Notify_Property_Boolean&
TAO_Notify_QoSProperties::stop_time_supported(void) const
{
  return this->stop_time_supported_;
}

ACE_INLINE const TAO_Notify_Property_Long&
TAO_Notify_QoSProperties::maximum_batch_size (void) const
{
  return this->maximum_batch_size_;
}

ACE_INLINE const TAO_Notify_Property_Time&
TAO_Notify_QoSProperties::pacing_interval (void) const
{
  return this->pacing_interval_;
}

ACE_INLINE
const TAO_Notify_Property_Long&
TAO_Notify_QoSProperties::max_events_per_consumer (void) const
{
  return this->max_events_per_consumer_;
}

ACE_INLINE
const TAO_Notify_Property_Short&
TAO_Notify_QoSProperties::discard_policy(void) const
{
  return this->discard_policy_;
}

ACE_INLINE
const TAO_Notify_Property_Short&
TAO_Notify_QoSProperties::order_policy(void) const
{
  return this->order_policy_;
}

ACE_INLINE const TAO_Notify_Property_ThreadPool&
TAO_Notify_QoSProperties::thread_pool (void) const
{
  return this->thread_pool_;
}

ACE_INLINE const TAO_Notify_Property_ThreadPoolLanes&
TAO_Notify_QoSProperties::thread_pool_lane (void) const
{
  return this->thread_pool_lane_;
}

ACE_INLINE
const TAO_Notify_Property_Time&
TAO_Notify_QoSProperties::blocking_policy(void) const
{
  return this->blocking_policy_;
}

///////////////////////////////////////////////////////////////////////////////

ACE_INLINE
TAO_Notify_Property_Short&
TAO_Notify_QoSProperties::event_reliability(void)
{
  return this->event_reliability_;
}

ACE_INLINE
TAO_Notify_Property_Short&
TAO_Notify_QoSProperties::connection_reliability(void)
{
  return this->connection_reliability_;
}

ACE_INLINE
TAO_Notify_Property_Short&
TAO_Notify_QoSProperties::priority(void)
{
  return this->priority_;
}

ACE_INLINE
TAO_Notify_Property_Time&
TAO_Notify_QoSProperties::timeout(void)
{
  return this->timeout_;
}

ACE_INLINE
TAO_Notify_Property_Boolean&
TAO_Notify_QoSProperties::stop_time_supported(void)
{
  return this->stop_time_supported_;
}

ACE_INLINE TAO_Notify_Property_Long&
TAO_Notify_QoSProperties::maximum_batch_size (void)
{
  return this->maximum_batch_size_;
}

ACE_INLINE TAO_Notify_Property_Time&
TAO_Notify_QoSProperties::pacing_interval (void)
{
  return this->pacing_interval_;
}
ACE_INLINE
TAO_Notify_Property_Long&
TAO_Notify_QoSProperties::max_events_per_consumer (void)
{
  return this->max_events_per_consumer_;
}

ACE_INLINE
TAO_Notify_Property_Short&
TAO_Notify_QoSProperties::discard_policy(void)
{
  return this->discard_policy_;
}

ACE_INLINE
TAO_Notify_Property_Short&
TAO_Notify_QoSProperties::order_policy(void)
{
  return this->order_policy_;
}

TAO_END_VERSIONED_NAMESPACE_DECL