Transport_Queueing_Strategies.cpp

Go to the documentation of this file.
00001 // $Id: Transport_Queueing_Strategies.cpp 79237 2007-08-07 09:48:21Z johnnyw $
00002 
00003 #include "tao/Transport_Queueing_Strategies.h"
00004 #include "tao/Stub.h"
00005 #include "tao/debug.h"
00006 
00007 #include "ace/Log_Msg.h"
00008 #include "ace/OS_NS_sys_time.h"
00009 
00010 ACE_RCSID (tao,
00011            Transport_Queueing_Strategies,
00012            "$Id: 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 }
00046 
00047 TAO_END_VERSIONED_NAMESPACE_DECL

Generated on Tue Feb 2 17:37:53 2010 for TAO by  doxygen 1.4.7