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