summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h b/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h
index a7e61a655bf..b04cbe9f3b7 100644
--- a/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h
+++ b/TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h
@@ -128,13 +128,13 @@ public:
* member of the collection.
* This encapsulates
*/
- virtual void for_each (TAO_ESF_Worker<PROXY> *worker,
- CORBA::Environment &ACE_TRY_ENV) = 0;
+ virtual void for_each (TAO_ESF_Worker<PROXY> *worker
+ TAO_ENV_ARG_DECL) = 0;
/// Insert a new element into the collection. The collection assumes
/// ownership of the element.
- virtual void connected (PROXY *proxy,
- CORBA::Environment &ACE_TRY_ENV) = 0;
+ virtual void connected (PROXY *proxy
+ TAO_ENV_ARG_DECL) = 0;
/**
* Insert an element into the collection. No errors can be raised
@@ -143,15 +143,15 @@ public:
* <proxy->_decr_refcnt()> if the element is already present in the
* collection.
*/
- virtual void reconnected (PROXY *proxy,
- CORBA::Environment &ACE_TRY_ENV) = 0;
+ virtual void reconnected (PROXY *proxy
+ TAO_ENV_ARG_DECL) = 0;
/// Remove an element from the collection.
- virtual void disconnected (PROXY *proxy,
- CORBA::Environment &ACE_TRY_ENV) = 0;
+ virtual void disconnected (PROXY *proxy
+ TAO_ENV_ARG_DECL) = 0;
/// The EC is shutting down, must release all the elements.
- virtual void shutdown (CORBA::Environment &ACE_TRY_ENV) = 0;
+ virtual void shutdown (TAO_ENV_SINGLE_ARG_DECL) = 0;
};
// ****************************************************************