#include <Block_Flushing_Strategy.h>
Inheritance diagram for TAO_Block_Flushing_Strategy:
Public Member Functions | |
virtual int | schedule_output (TAO_Transport *transport) |
virtual int | cancel_output (TAO_Transport *transport) |
Cancel all scheduled output for the transport argument. | |
virtual int | flush_message (TAO_Transport *transport, TAO_Queued_Message *msg, ACE_Time_Value *max_wait_time) |
virtual int | flush_transport (TAO_Transport *transport) |
Wait until the transport has no messages queued. |
Definition at line 30 of file Block_Flushing_Strategy.h.
|
Cancel all scheduled output for the transport argument.
Implements TAO_Flushing_Strategy. Definition at line 18 of file Block_Flushing_Strategy.cpp.
00019 {
00020 return 0;
00021 }
|
|
Wait until msg is sent out. Potentially other messages are flushed too, for example, because there are ahead in the queue. Implements TAO_Flushing_Strategy. Definition at line 24 of file Block_Flushing_Strategy.cpp. References TAO_Queued_Message::all_data_sent(), and TAO_Transport::handle_output().
00027 { 00028 while (!msg->all_data_sent ()) 00029 { 00030 if (transport->handle_output () == -1) 00031 return -1; 00032 } 00033 return 0; 00034 } |
|
Wait until the transport has no messages queued.
Implements TAO_Flushing_Strategy. Definition at line 37 of file Block_Flushing_Strategy.cpp. References TAO_Transport::handle_output(), and TAO_Transport::queue_is_empty().
00038 { 00039 while (!transport->queue_is_empty ()) 00040 { 00041 if (transport->handle_output () == -1) 00042 return -1; 00043 } 00044 return 0; 00045 } |
|
Schedule the transport argument to be flushed If -2 is returned then the caller must call one of the flush_* methods. If -1 is returned then there was an error. If 0 is returned then the flush was scheduled successfully. Implements TAO_Flushing_Strategy. Definition at line 12 of file Block_Flushing_Strategy.cpp.
00013 { 00014 return MUST_FLUSH; 00015 } |