notify_sequence_push_consumer.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 51 行
H
51 行
/* -*- C++ -*- */
// Notify_Sequence_Push_Consumer.h,v 1.4 2003/07/06 21:41:57 pradeep Exp
// ==========================================================================
//
// = LIBRARY
// TAO/orbsvcs/tests/Notify/Discarding
//
// = FILENAME
// Notify_Sequence_Push_Consumer.h
//
// = DESCRIPTION
// A sequence push consumer implementation.
//
// = AUTHOR
// Chad Elliott <elliott_c@ociweb.com>
//
// ==========================================================================
#ifndef TAO_NOTIFY_SEQUENCE_PUSH_CONSUMER_H
#define TAO_NOTIFY_SEQUENCE_PUSH_CONSUMER_H
#include "Notify_SequencePushConsumer.h"
class Notify_Sequence_Push_Consumer: public TAO_Notify_Tests_SequencePushConsumer
{
public:
Notify_Sequence_Push_Consumer (const char* name,
CORBA::Short policy,
unsigned int low,
unsigned int high,
CORBA::Boolean& done);
void _connect (CosNotifyChannelAdmin::ConsumerAdmin_ptr consumer_admin
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
protected:
void push_structured_events (const CosNotification::EventBatch&
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
ACE_CString name_;
CORBA::Short discard_policy_;
unsigned int low_;
unsigned int high_;
unsigned int count_;
CORBA::Boolean& done_;
};
#endif /* TAO_NOTIFY_SEQUENCE_PUSH_CONSUMER_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?