Go to file
Norman Maurer 1275cfd8f8
Add *ReceiveBufferSize / *SendBufferSize methods to DomainSocketChannelConfig interface (#9602)
Motivation:

aebe206 added support for using a ChannelOption to set / get Buffer sizes but did not add the methods to the DomainSocketChannelConfig interface itself (due not be able to break the API)

Modifications:

Add methods to interface (as this is a next major release)

Result:

Easier access to configure these buffer sizes
2019-09-26 08:58:22 +02:00
.github
.mvn
all
bom
buffer Fix for incorrect values from CompositeByteBuf#component(int) (#9525) 2019-09-02 13:52:47 +02:00
codec
codec-dns
codec-haproxy
codec-http Fix incorrect comment (#9598) 2019-09-24 10:01:20 +02:00
codec-http2 Fix GraalVM native image build error (#9593) 2019-09-23 14:42:10 +02:00
codec-memcache
codec-mqtt
codec-redis
codec-smtp
codec-socks FIX : Unpacking causes socks5proxy init failure (#9582) 2019-09-20 10:17:13 +02:00
codec-stomp
codec-xml
common Always notify FutureListener via the EventExecutor (#9489) 2019-09-24 09:10:59 +02:00
dev-tools
docker
example
handler Always notify FutureListener via the EventExecutor (#9489) 2019-09-24 09:10:59 +02:00
handler-proxy
license
microbench
resolver
resolver-dns
tarball
testsuite Correctly reset cached local and remote address when disconnect() is called (#9545) 2019-09-19 08:51:23 +02:00
testsuite-autobahn
testsuite-http2
testsuite-native-image
testsuite-osgi
testsuite-shading Allow to build on powerpc 2019-09-13 22:21:36 +02:00
transport Always notify FutureListener via the EventExecutor (#9489) 2019-09-24 09:10:59 +02:00
transport-native-epoll Add *ReceiveBufferSize / *SendBufferSize methods to DomainSocketChannelConfig interface (#9602) 2019-09-26 08:58:22 +02:00
transport-native-kqueue Add *ReceiveBufferSize / *SendBufferSize methods to DomainSocketChannelConfig interface (#9602) 2019-09-26 08:58:22 +02:00
transport-native-unix-common Add *ReceiveBufferSize / *SendBufferSize methods to DomainSocketChannelConfig interface (#9602) 2019-09-26 08:58:22 +02:00
transport-native-unix-common-tests
transport-sctp
.fbprefs
.gitattributes
.gitignore
CONTRIBUTING.md
LICENSE.txt
mvnw
mvnw.cmd
NOTICE.txt
pom.xml Update to netty-tcnative 2.0.26.Final (#9589) 2019-09-21 18:09:57 +02:00
README.md
run-example.sh

Netty Project

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

How to build

For the detailed information about building and developing Netty, please visit the developer guide. This page only gives very basic information.

You require the following to build Netty:

Note that this is build-time requirement. JDK 5 (for 3.x) or 6 (for 4.0+) is enough to run your Netty-based application.

Branches to look

Development of all versions takes place in each branch whose name is identical to <majorVersion>.<minorVersion>. For example, the development of 3.9 and 4.0 resides in the branch '3.9' and the branch '4.0' respectively.

Usage with JDK 9

Netty can be used in modular JDK9 applications as a collection of automatic modules. The module names follow the reverse-DNS style, and are derived from subproject names rather than root packages due to historical reasons. They are listed below:

  • io.netty.all
  • io.netty.buffer
  • io.netty.codec
  • io.netty.codec.dns
  • io.netty.codec.haproxy
  • io.netty.codec.http
  • io.netty.codec.http2
  • io.netty.codec.memcache
  • io.netty.codec.mqtt
  • io.netty.codec.redis
  • io.netty.codec.smtp
  • io.netty.codec.socks
  • io.netty.codec.stomp
  • io.netty.codec.xml
  • io.netty.common
  • io.netty.handler
  • io.netty.handler.proxy
  • io.netty.resolver
  • io.netty.resolver.dns
  • io.netty.transport
  • io.netty.transport.epoll (native omitted - reserved keyword in Java)
  • io.netty.transport.kqueue (native omitted - reserved keyword in Java)
  • io.netty.transport.unix.common (native omitted - reserved keyword in Java)
  • io.netty.transport.rxtx
  • io.netty.transport.sctp
  • io.netty.transport.udt

Automatic modules do not provide any means to declare dependencies, so you need to list each used module separately in your module-info file.