Netty Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 7: Line 7:
=Overview=
=Overview=


High throughput non-blocking I/O. Servers and clients. Channel. ChannelPipeline that holds ChannelHandler instances. Events. Event lifecycle. Events are processed by EventLoops.
High throughput non-blocking I/O. Servers and clients. Channel. ChannelPipeline that holds ChannelHandler instances. Events. Everything is an event (accept new connection, read data, write data). Event lifecycle. Events are processed by EventLoops.


Transport and NIO Transport.
Transport and NIO Transport.

Revision as of 06:37, 15 September 2020

Internal

Overview

High throughput non-blocking I/O. Servers and clients. Channel. ChannelPipeline that holds ChannelHandler instances. Events. Everything is an event (accept new connection, read data, write data). Event lifecycle. Events are processed by EventLoops.

Transport and NIO Transport.