Skip to the content.

Home / cs-notes / Architecture / Components / Netty / Channel / AbstractChannel / AbstractUnsafe / write

        @Override
        public final void write(Object msg, ChannelPromise promise) {
            ...
            ChannelOutboundBuffer outboundBuffer = this.outboundBuffer;
            ...
            outboundBuffer.addMessage(msg, size, promise);
        }