n

netty

The Netty project is an effort to provide an asynchronous event-driven network application framework and tools for rapid development of maintainable high performance and high scalability protocol servers and clients. In other words, Netty is a NIO client server framework which enables quick and easy development of network applications such as protocol servers and clients. It greatly simplifies and streamlines network programming such as TCP and UDP socket server.
http://netty.io/
Apache License, Version 2.0
The Netty Project
The Netty Project Contributors
文件下载
文件名 操作
netty-3.9.0.Final.jar 下载
netty-3.9.0.Final.pom 下载
netty-3.9.0.Final-sources.jar 下载
Apache Maven
<dependency>
  <groupId>io.netty</groupId>
  <artifactId>netty</artifactId>
  <version>3.9.0.Final</version>
  <type>bundle</type>
</dependency>
Gradle Groovy
implementation 'io.netty:netty:3.9.0.Final'
Gradle Kotlin
implementation("io.netty:netty:3.9.0.Final")
Scala SBT
libraryDependencies += "io.netty" % "netty" % "3.9.0.Final"
Groovy Grape
@Grapes(
  @Grab(group='io.netty', module='netty', version='3.9.0.Final')
)
Apache Ivy
<dependency org="io.netty" name="netty" rev="3.9.0.Final" />
Leiningen
[io.netty/netty "3.9.0.Final"]
Apache Buildr
'io.netty:netty:jar:3.9.0.Final'