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

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

ACE_INLINE TAO_Notify_Property_Long&
TAO_Notify_AdminProperties::max_global_queue_length (void)
{
  return this->max_global_queue_length_;
}

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

ACE_INLINE TAO_Notify_Property_Long&
TAO_Notify_AdminProperties::max_consumers (void)
{
  return this->max_consumers_;
}

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

ACE_INLINE TAO_Notify_Property_Long&
TAO_Notify_AdminProperties::max_suppliers (void)
{
  return this->max_suppliers_;
}

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

ACE_INLINE TAO_Notify_Property_Boolean&
TAO_Notify_AdminProperties::reject_new_events (void)
{
  return this->reject_new_events_;
}

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

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

ACE_INLINE TAO_SYNCH_CONDITION&
TAO_Notify_AdminProperties::global_queue_not_full(void)
{
  return this->global_queue_not_full_;
}

ACE_INLINE TAO_Notify_Atomic_Property_Long&
TAO_Notify_AdminProperties::consumers (void)
{
  return this->consumers_;
}

ACE_INLINE TAO_Notify_Atomic_Property_Long&
TAO_Notify_AdminProperties::suppliers (void)
{
  return this->suppliers_;
}