#include <Transport_Mux_Strategy.h>
Inheritance diagram for TAO_Transport_Mux_Strategy:
Public Member Functions | |
TAO_Transport_Mux_Strategy (TAO_Transport *transport) | |
Base class constructor. | |
virtual | ~TAO_Transport_Mux_Strategy (void) |
Base class destructor. | |
virtual CORBA::ULong | request_id (void)=0 |
virtual int | bind_dispatcher (CORBA::ULong request_id, TAO_Reply_Dispatcher *rd)=0 |
virtual int | unbind_dispatcher (CORBA::ULong request_id)=0 |
virtual int | dispatch_reply (TAO_Pluggable_Reply_Params ¶ms)=0 |
virtual bool | idle_after_send (void)=0 |
virtual bool | idle_after_reply (void)=0 |
virtual void | connection_closed (void)=0 |
Protected Attributes | |
TAO_Transport * | transport_ |
Cache the transport reference. | |
ACE_Lock * | lock_ |
Lock to protect the state of the object. |
|
Base class constructor.
|
|
Base class destructor.
|
|
Bind the dispatcher with the request id. Commonalities in the derived class implementations is kept here. Implemented in TAO_Exclusive_TMS, and TAO_Muxed_TMS. |
|
The transport object has closed the connection, inform all Reply dispatchers and waiting strategies. Implemented in TAO_Exclusive_TMS, and TAO_Muxed_TMS. |
|
Dispatch the reply for <request_id>, cleanup any resources allocated for that request. Implemented in TAO_Exclusive_TMS, and TAO_Muxed_TMS. |
|
Request is sent and the reply is received. Idle the transport now. The return value indicates whether idling was successful or not. Implemented in TAO_Exclusive_TMS, and TAO_Muxed_TMS. |
|
Request has been just sent, but the reply is not received. Idle the transport now. The return value indicates whether idling was successful or not. Implemented in TAO_Exclusive_TMS, and TAO_Muxed_TMS. |
|
Generate and return an unique request id for the current invocation. Implemented in TAO_Exclusive_TMS, and TAO_Muxed_TMS. |
|
Unbind the dispatcher, the client is no longer waiting for the request, for example, because the request timedout. The strategy can (must) cleanup any resources associated with the request. A later reply for that request should be ignored. Implemented in TAO_Exclusive_TMS, and TAO_Muxed_TMS. |
|
Lock to protect the state of the object.
|
|
Cache the transport reference.
|