本文整理汇总了C++中rteceventcomm::PushConsumer_var::disconnect_push_consumer方法的典型用法代码示例。如果您正苦于以下问题:C++ PushConsumer_var::disconnect_push_consumer方法的具体用法?C++ PushConsumer_var::disconnect_push_consumer怎么用?C++ PushConsumer_var::disconnect_push_consumer使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类rteceventcomm::PushConsumer_var
的用法示例。
在下文中一共展示了PushConsumer_var::disconnect_push_consumer方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: catch
void
TAO_EC_ProxyPushSupplier::shutdown (void)
{
// Save the consumer we where connected to, we need to send a
// disconnect message to it.
RtecEventComm::PushConsumer_var consumer;
{
ACE_GUARD_THROW_EX (
ACE_Lock, ace_mon, *this->lock_,
RtecEventChannelAdmin::EventChannel::SYNCHRONIZATION_ERROR ());
bool const connected = this->is_connected_i ();
consumer = this->consumer_._retn ();
if (connected)
this->cleanup_i ();
}
this->deactivate ();
if (CORBA::is_nil (consumer.in ()))
return;
try
{
consumer->disconnect_push_consumer ();
}
catch (const CORBA::Exception&)
{
// Ignore exceptions, we must isolate other clients from
// problems on this one.
}
}
示例2: catch
void
TAO_EC_Default_ProxyPushSupplier::disconnect_push_supplier ()
{
RtecEventComm::PushConsumer_var consumer;
int connected = 0;
{
ACE_GUARD_THROW_EX (
ACE_Lock, ace_mon, *this->lock_,
CORBA::INTERNAL ());
// @@ RtecEventChannelAdmin::EventChannel::SYNCHRONIZATION_ERROR ());
connected = this->is_connected_i ();
consumer = this->consumer_._retn ();
if (connected)
this->cleanup_i ();
}
// Notify the event channel....
this->event_channel_->disconnected (this);
if (!connected)
{
return;
}
if (this->event_channel_->disconnect_callbacks ())
{
try
{
consumer->disconnect_push_consumer ();
}
catch (const CORBA::Exception& ex)
{
// Ignore exceptions, we must isolate other clients from
// problems on this one.
ex._tao_print_exception ("ProxySupplier::disconnect_push_supplier");
}
}
}