summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/AdminProperties.inl
blob: 4abdd9b071ad33f86ae480534fd3ad963e0ca89c (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
// $Id$

ACE_INLINE const TAO_NS_Property_Long&
TAO_NS_AdminProperties::max_global_queue_length (void) const
{
  return this->max_global_queue_length_;
}

ACE_INLINE const TAO_NS_Property_Long&
TAO_NS_AdminProperties::max_consumers (void) const
{
  return this->max_consumers_;
}

ACE_INLINE const TAO_NS_Property_Long&
TAO_NS_AdminProperties::max_suppliers (void) const
{
  return this->max_suppliers_;
}

ACE_INLINE const TAO_NS_Property_Boolean&
TAO_NS_AdminProperties::reject_new_events (void) const
{
  return this->reject_new_events_;
}

ACE_INLINE CORBA::Long&
TAO_NS_AdminProperties::global_queue_length (void)
{
  return this->global_queue_length_;
}

ACE_INLINE TAO_SYNCH_MUTEX&
TAO_NS_AdminProperties::global_queue_lock (void)
{
  return this->global_queue_lock_;
}

ACE_INLINE TAO_SYNCH_CONDITION&
TAO_NS_AdminProperties::global_queue_not_full_condition (void)
{
  return this->global_queue_not_full_condition_;
}

ACE_INLINE TAO_NS_Atomic_Property_Long&
TAO_NS_AdminProperties::consumers (void)
{
  return this->consumers_;
}

ACE_INLINE TAO_NS_Atomic_Property_Long&
TAO_NS_AdminProperties::suppliers (void)
{
  return this->suppliers_;
}