一文搞懂Netty发送数据全流程 | 你想知道的细节全在这里(五)
3.3.5向ChannelOutboundBuffer中缓存待发送数据在介绍完ChannelOutboundBuffer的基本结构之后,下面就来到了Netty处理write事件的最后一步,我们来看下用户的待发送数据是如何被添加进ChannelOutboundBuffer中的。publicvoidaddMessage(Objectmsg,intsize,ChannelPromisepromise){EntryentryEntry.newInstance(msg,size,total(msg),promise);if(tailEntrynull){flushedEntrynull;}else{EntrytailtailEntry;tail.nextentry;}tail...