periodic_consumer.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 100 行
H
100 行
/* -*- C++ -*- */
/**
* @file Periodic_Consumer.h
*
* Periodic_Consumer.h,v 1.6 2003/07/21 23:51:33 dhinton Exp
*
* @author Pradeep Gore <pradeep@oomworks.com>
*
*
*/
#ifndef TAO_Notify_Tests_PERIODIC_CONSUMER_H
#define TAO_Notify_Tests_PERIODIC_CONSUMER_H
#include /**/ "ace/pre.h"
#include "notify_test_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "Task_Stats.h"
#include "Notify_StructuredPushConsumer.h"
class TAO_Notify_Tests_Task_Callback;
class ACE_Barrier;
class ACE_Arg_Shifter;
/**
* @class TAO_Notify_Tests_Periodic_Consumer
*
* @brief Receives Structured events periodically.
*
*/
class TAO_NOTIFY_TEST_Export TAO_Notify_Tests_Periodic_Consumer : public TAO_Notify_Tests_StructuredPushConsumer
{
public:
/// Constuctor
TAO_Notify_Tests_Periodic_Consumer (void);
/// Destructor
~TAO_Notify_Tests_Periodic_Consumer ();
/// set the helper callback
void task_callback(TAO_Notify_Tests_Task_Callback* client);
/// Init the state of this object.
virtual int init_state (ACE_Arg_Shifter& arg_shifter);
/// dump stats
void dump_stats (ACE_TCHAR* msg, int dump_samples);
protected:
virtual void push_structured_event (
const CosNotification::StructuredEvent & notification
ACE_ENV_ARG_DECL
)
ACE_THROW_SPEC ((
CORBA::SystemException,
CosEventComm::Disconnected
));
void handle_start_event (const CosNotification::PropertySeq& prop_seq);
void check_priority (const CosNotification::PropertySeq& prop_seq);
/// = Data members.
/// Serialize state.
TAO_SYNCH_MUTEX lock_;
/// count of events received.
int count_;
/// We need to count down these initial events.
int warmup_countdown_;
/// max events expected.
/// Sometimes max count may not be the number of events that the supplier will send.
/// A filter might not allow some events to through. we can tell the consumer what to expect.
int max_count_;
/// The Load
CORBA::ULong load_;
/// Stats house keeping
Task_Stats stats_;
/// Client
TAO_Notify_Tests_Task_Callback* client_;
/// Flag to indicate if we want to check the expected priority.
int check_priority_;
/// This Flag is set if we received an event asking us to "Stop".
int stop_received_;
};
#include /**/ "ace/post.h"
#endif /* TAO_Notify_Tests_PERIODIC_CONSUMER_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?