Registry / networking / netty
library3.10.6.Finaljavamavenunverified

Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.

<dependency> <groupId>io.netty</groupId> <artifactId>netty</artifactId> <version>3.10.6.Final</version> </dependency>
INSTALL
IMPORT
SIG · NETTY
N
netty
networkingjavav3.10.6.Final
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ServerBootstrap
io.netty.bootstrap.ServerBootstrap

Minimal Netty server bootstrap example.

import io.netty.bootstrap.ServerBootstrap; import io.netty.channel.nio.NioEventLoopGroup; import io.netty.channel.socket.nio.NioServerSocketChannel; public class Quickstart { public static void main(String[] args) { new ServerBootstrap() .group(new NioEventLoopGroup()) .channel(NioServerSocketChannel.class) .localAddress(8080) .childHandler(new ChannelInitializer<>() { @Override protected void initChannel(Channel ch) {} }) .bind(); } }
Debug
Known issues
breakingNetty 3.x is outdated; consider upgrading to 4.x for better performance and API stability.
fix
Upgrade to io.netty:netty-all version 4.x or later.
affects: <4.0.0
Upgrade
Version history
3.10.6.Finallatest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
Amazon
1
Resources
netty — mvn dependency:get netty · libregistry