structuredevent.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 89 行
CPP
89 行
// StructuredEvent.cpp,v 1.5 2003/08/24 13:50:14 jwillemsen Exp
#include "StructuredEvent.h"
ACE_RCSID(RT_Notify, TAO_Notify_Tests_StructuredEvent, "StructuredEvent.cpp,v 1.5 2003/08/24 13:50:14 jwillemsen Exp")
TAO_Notify_Tests_StructuredEvent::TAO_Notify_Tests_StructuredEvent (void)
{
}
TAO_Notify_Tests_StructuredEvent::~TAO_Notify_Tests_StructuredEvent ()
{
}
TAO_Notify_Tests_StructuredEvent::TAO_Notify_Tests_StructuredEvent (const char* name)
{
event_.header.fixed_header.event_name = CORBA::string_dup(name);
}
TAO_Notify_Tests_StructuredEvent::TAO_Notify_Tests_StructuredEvent (const char* domain, const char* type)
{
event_.header.fixed_header.event_type.domain_name = CORBA::string_dup(domain);
event_.header.fixed_header.event_type.type_name = CORBA::string_dup(type);
}
TAO_Notify_Tests_StructuredEvent::TAO_Notify_Tests_StructuredEvent (const char* name, const char* domain, const char* type)
{
event_.header.fixed_header.event_name = CORBA::string_dup(name);
event_.header.fixed_header.event_type.domain_name = CORBA::string_dup(domain);
event_.header.fixed_header.event_type.type_name = CORBA::string_dup(type);
}
void
TAO_Notify_Tests_StructuredEvent::name (const char* name)
{
event_.header.fixed_header.event_name = CORBA::string_dup(name);
}
void
TAO_Notify_Tests_StructuredEvent::type (const char* domain, const char* type)
{
event_.header.fixed_header.event_type.domain_name = CORBA::string_dup(domain);
event_.header.fixed_header.event_type.type_name = CORBA::string_dup(type);
}
const char*
TAO_Notify_Tests_StructuredEvent::type (void)
{
return event_.header.fixed_header.event_type.type_name;
}
void
TAO_Notify_Tests_StructuredEvent::opt_header (const char* name, CORBA::Any& value)
{
CosNotification::PropertySeq& opt = event_.header.variable_header;
opt.length (opt.length () + 1);
opt[opt.length () - 1].name = CORBA::string_dup (name);
opt[opt.length () - 1].value = value;
}
void
TAO_Notify_Tests_StructuredEvent::filter (const char* name, CORBA::Any& value)
{
CosNotification::PropertySeq& filter = event_.filterable_data;
filter.length (filter.length () + 1);
filter[filter.length () - 1].name = CORBA::string_dup (name);
filter[filter.length () - 1].value = value;
}
void
TAO_Notify_Tests_StructuredEvent::qos (const char* name, CORBA::Any& value)
{
this->opt_header (name, value);
}
void
TAO_Notify_Tests_StructuredEvent::payload (CORBA::Any& value)
{
event_.remainder_of_body = value;
}
CosNotification::StructuredEvent&
TAO_Notify_Tests_StructuredEvent::event (void)
{
return this->event_;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?