📄 qosproperties.h
字号:
/* -*- C++ -*- */
/**
* @file QoSProperties.h
*
* QoSProperties.h,v 1.5 2003/10/28 18:34:24 bala Exp
*
* @author Pradeep Gore <pradeep@oomworks.com>
*
*
*/
#ifndef TAO_Notify_QOSPROPERTIES_H
#define TAO_Notify_QOSPROPERTIES_H
#include /**/ "ace/pre.h"
#include "notify_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "PropertySeq.h"
#include "Property_T.h"
#include "Property_Boolean.h"
#include "Property.h"
/**
* @class TAO_Notify_QoSProperties
*
* @brief
*
*/
class TAO_Notify_Export TAO_Notify_QoSProperties : public TAO_Notify_PropertySeq
{
public:
/// Constuctor
TAO_Notify_QoSProperties (void);
/// Destructor
~TAO_Notify_QoSProperties ();
/// Return 0 on success, 1 if unsupported properties were detected and -1 on error.
int init (const CosNotification::PropertySeq& prop_seq, CosNotification::PropertyErrorSeq& err_seq);
/// Populate <qos_properties> with all properties from this object. Returns -1 on error.
int copy (TAO_Notify_QoSProperties& qos_properties);
/// Populate <qos_properties> with properties that can be transfered.Returns -1 on error.
int transfer (TAO_Notify_QoSProperties& qos_properties);
///= Accessors
/// ThreadPool
const TAO_Notify_Property_ThreadPool& thread_pool (void) const;
/// ThreadPoolLane
const TAO_Notify_Property_ThreadPoolLanes& thread_pool_lane (void) const;
/// Maximum Batch Size
const TAO_Notify_Property_Long& maximum_batch_size (void) const;
/// Pacing Interval
const TAO_Notify_Property_Time& pacing_interval (void) const;
protected:
/// Return 1 if <value> is unsupported.
int unsupported (ACE_CString& name);
enum {UNSUPPORTED_PROPERTY_COUNT = 3};
///= Unsupported Properties.
ACE_CString unsupported_[UNSUPPORTED_PROPERTY_COUNT];
///= Supported properties
/// Priority
TAO_Notify_Property_Short priority_;
/// Timeout
TAO_Notify_Property_Time timeout_;
/// Stop Time Supported
TAO_Notify_Property_Boolean stop_time_supported_;
/// Maximum Batch Size
TAO_Notify_Property_Long maximum_batch_size_;
/// Pacing Interval
TAO_Notify_Property_Time pacing_interval_;
/// ThreadPool Params.
TAO_Notify_Property_ThreadPool thread_pool_;
/// ThreadPoolLane Params.
TAO_Notify_Property_ThreadPoolLanes thread_pool_lane_;
};
#if defined (__ACE_INLINE__)
#include "QoSProperties.inl"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif /* TAO_Notify_QOSPROPERTIES_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -