#include "tao/Transport_Queueing_Strategies.h"#include "tao/Stub.h"#include "tao/debug.h"#include "ace/Log_Msg.h"#include "ace/OS_NS_sys_time.h"
Go to the source code of this file.
Functions | |
| ACE_RCSID (tao, Transport_Queueing_Strategies,"$Id: Transport_Queueing_Strategies.cpp 79237 2007-08-07 09:48:21Z johnnyw $") 1 namespace TAO | |
| ACE_RCSID | ( | tao | , | |
| Transport_Queueing_Strategies | , | |||
| "$Id: Transport_Queueing_Strategies.cpp 79237 2007-08-07 09:48:21Z johnnyw $" | ||||
| ) |
Definition at line 10 of file Transport_Queueing_Strategies.cpp.
00012 : Transport_Queueing_Strategies.cpp 79237 2007-08-07 09:48:21Z johnnyw $") 00013 00014 00015 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00016 00017 namespace TAO 00018 { 00019 Transport_Queueing_Strategy::~Transport_Queueing_Strategy (void) 00020 { 00021 } 00022 00023 // **************************************************************** 00024 00025 bool 00026 Flush_Transport_Queueing_Strategy::must_queue (bool) const 00027 { 00028 return false; 00029 } 00030 00031 bool 00032 Flush_Transport_Queueing_Strategy::buffering_constraints_reached ( 00033 TAO_Stub *, 00034 size_t , 00035 size_t , 00036 bool &must_flush, 00037 const ACE_Time_Value &, 00038 bool &set_timer, 00039 ACE_Time_Value &) const 00040 { 00041 set_timer = false; 00042 must_flush = true; 00043 return true; 00044 } 00045 }
1.6.1