⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 htbp_notifier.cpp

📁 ACE自适配通信环境(ADAPTIVE Communication Environment)是可以自由使用、开放源码的面向对象(OO)框架(Framework)
💻 CPP
字号:
/* -*- C++ -*- *///=============================================================================/** *  @file    HTBP_Notifier.cpp * *  HTBP_Notifier.cpp,v 1.3 2005/11/27 12:11:35 ossama Exp * *  @author Phil Mesnier, Priyanka Gontla *///=============================================================================#include "HTBP_Notifier.h"#include "HTBP_Channel.h"#include "HTBP_Session.h"#include "ace/Reactor.h"ACE_BEGIN_VERSIONED_NAMESPACE_DECLACE::HTBP::Notifier::Notifier (ACE::HTBP::Channel *s)  : channel_(s){}intACE::HTBP::Notifier::handle_input(ACE_HANDLE ){  switch (this->channel_->state())    {    case ACE::HTBP::Channel::Detached:      this->channel_->pre_recv();      break;    case ACE::HTBP::Channel::Wait_For_Ack:      this->channel_->recv_ack();      break;    default:      this->channel_->load_buffer();    }  if (this->channel_->state() == ACE::HTBP::Channel::Closed)    {      this->unregister();      return 0;    }  if (this->channel_->session_)    {      if (this->channel_ == this->channel_->session_->inbound())        {          ACE_Event_Handler *h = this->channel_->session_->handler();          if (h && this->reactor())            this->reactor()->notify(h,                                    ACE_Event_Handler::READ_MASK);          else            ACE_DEBUG ((LM_DEBUG,"Notifier cannot notify, session has no handler (%x), or reactor (%x)\n",h,this->reactor()));        }      else        this->channel_->flush_buffer();    }  else    ACE_DEBUG ((LM_DEBUG,"Notifier has no session to notify!\n"));  return 0;}intACE::HTBP::Notifier::handle_output (ACE_HANDLE ){  return -1;}voidACE::HTBP::Notifier::unregister (void){  if (this->reactor())    this->reactor()->remove_handler(this,                                    ACE_Event_Handler::READ_MASK |                                    ACE_Event_Handler::DONT_CALL);}ACE_HANDLEACE::HTBP::Notifier::get_handle(void) const{  return this->channel_->ace_stream().get_handle();}ACE_END_VERSIONED_NAMESPACE_DECL

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -