A worker to invoke the shutdown method of each proxy. More...
#include <ESF_Shutdown_Proxy.h>


Public Member Functions | |
| TAO_ESF_Shutdown_Proxy (void) | |
| void | work (PROXY *proxy) |
| Callback interface. | |
A worker to invoke the shutdown method of each proxy.
Definition at line 27 of file ESF_Shutdown_Proxy.h.
| TAO_ESF_Shutdown_Proxy< PROXY >::TAO_ESF_Shutdown_Proxy | ( | void | ) |
Definition at line 8 of file ESF_Shutdown_Proxy.inl.
{
}
| void TAO_ESF_Shutdown_Proxy< PROXY >::work | ( | PROXY * | object | ) | [virtual] |
Callback interface.
Implements TAO_ESF_Worker< PROXY >.
Definition at line 17 of file ESF_Shutdown_Proxy.cpp.
{
try
{
proxy->shutdown ();
}
catch (const CORBA::Exception&)
{
// Do not propagate any exceptions
}
}
1.7.0