summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set.i
blob: dda5992d8a4d9fdffce3802d01b7a7778f576569 (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_ProxyPushSupplier_Set::SupplierSetIterator
TAO_EC_ProxyPushSupplier_Set::begin (void)
{
  return this->all_suppliers_.begin ();
}

ACE_INLINE TAO_EC_ProxyPushSupplier_Set::SupplierSetIterator
TAO_EC_ProxyPushSupplier_Set::end (void)
{
  return this->all_suppliers_.end ();
}

ACE_INLINE void
TAO_EC_ProxyPushSupplier_Set::busy_hwm (CORBA::ULong hwm)
{
  this->busy_hwm_ = hwm;
}

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

ACE_INLINE void
TAO_EC_ProxyPushSupplier_Set::max_write_delay (CORBA::ULong mwd)
{
  this->max_write_delay_ = mwd;
}

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

ACE_INLINE TAO_EC_ProxyPushSupplier_Set::Busy_Lock&
TAO_EC_ProxyPushSupplier_Set::busy_lock (void)
{
  return this->busy_lock_;
}