muduo网络库学习之EventLoop(六):TcpConnection::send()、shutdown()、handleRead()、handleWrite()
首先在EventLoop(五)基础上,在TcpConnection构造函数中添加: C++Code 123 // 通道可写事件到来的时候,回调TcpConnection::handleWritechannel_->setWriteCallback( boost::bind(&TcpConnection::handleWrite, this));多了两个应用层缓冲区成员: C++Code 12