summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_ConsumerAdmin.i
blob: 9d316a56539d61a88f8fe34209587c568ba68136 (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
// $Id$

ACE_INLINE TAO_EC_ConsumerAdmin::SupplierSetIterator
TAO_EC_ConsumerAdmin::begin (void)
{
  return this->supplier_set_->begin ();
}

ACE_INLINE TAO_EC_ConsumerAdmin::SupplierSetIterator
TAO_EC_ConsumerAdmin::end (void)
{
  return this->supplier_set_->end ();
}

ACE_INLINE TAO_EC_ConsumerAdmin::Busy_Lock&
TAO_EC_ConsumerAdmin::busy_lock (void)
{
  return this->supplier_set_->busy_lock ();
}

ACE_INLINE void
TAO_EC_ConsumerAdmin::busy_hwm (CORBA::ULong hwm)
{
  this->supplier_set_->busy_hwm (hwm);
}

ACE_INLINE CORBA::ULong
TAO_EC_ConsumerAdmin::busy_hwm (void) const
{
  return this->supplier_set_->busy_hwm ();
}

ACE_INLINE void
TAO_EC_ConsumerAdmin::max_write_delay (CORBA::ULong hwm)
{
  this->supplier_set_->max_write_delay (hwm);
}

ACE_INLINE CORBA::ULong
TAO_EC_ConsumerAdmin::max_write_delay (void) const
{
  return this->supplier_set_->max_write_delay ();
}