Tag

ChannelPipeline

0 views collected around this technical thread.

Wukong Talks Architecture
Wukong Talks Architecture
Dec 22, 2021 · Backend Development

Understanding Netty: Core Components, Architecture, and a Simple Chat Server Example

This tutorial explains why Netty is preferred over raw NIO, introduces its core components and architecture, and walks through a complete Java example of a simple Netty chat server, including handling of connections, message broadcasting, pipeline configuration, and TCP sticky‑packet issues.

BackendByteBufChannelPipeline
0 likes · 25 min read
Understanding Netty: Core Components, Architecture, and a Simple Chat Server Example
Xiaokun's Architecture Exploration Notes
Xiaokun's Architecture Exploration Notes
Apr 28, 2020 · Backend Development

How Netty Builds and Manages Its Channel Pipeline: Creation, Adding, and Destruction

This article explains Netty's channel pipeline lifecycle—including how the responsibility chain is created during channel initialization, how handlers are added and removed, and how the pipeline is torn down during channel closure—while providing detailed source‑code excerpts and diagrams to illustrate each step.

ChannelPipelineEventLoopHandler
0 likes · 16 min read
How Netty Builds and Manages Its Channel Pipeline: Creation, Adding, and Destruction