Skip to content

Http server netty epoll

Module http_server_netty_epoll

Netty Epoll adapter for the http_server port.

Install the Dependency

1
2
3
4
5
6
7
8
9
repositories {
    mavenCentral()
}

dependencies {
  implementation("com.hexagonkt:http_server_netty_epoll:$hexagonVersion")
  // $arch could be 'x86_64' among other linux architectures
  implementation("io.netty:netty-transport-native-epoll:$nettyVersion:linux-$arch")
}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
<dependency>
  <groupId>com.hexagonkt</groupId>
  <artifactId>http_server_netty_epoll</artifactId>
  <version>$hexagonVersion</version>
</dependency>
<dependency>
  <groupId>io.netty</groupId>
  <artifactId>netty-transport-native-epoll</artifactId>
  <version>$nettyVersion</version>
  <!-- $arch could be 'x86_64' among other linux architectures -->
  <classifier>linux-$arch</classifier>
</dependency>

Package com.hexagonkt.http.server.netty.epoll

Code implementing the Netty HTTP server adapter using Epoll transport.