summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Notify_AdminProperties.i
blob: 5ff900bd5f395267588db9ee1a87ae5f4754a0b5 (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
// $Id$

#include "Notify_AdminProperties.h"

ACE_INLINE CORBA::Long
TAO_Notify_AdminProperties::max_queue_length (void) const
{
  return this->max_queue_length_;
}

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

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

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

ACE_INLINE TAO_Notify_Signal_Property_Long*
TAO_Notify_AdminProperties::queue_length (void)
{
  return &(this->queue_length_);
}

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

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