http_server_netty_epoll
Netty Epoll adapter for the http_server port.
Install the Dependency
=== "build.gradle"
```groovy
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")
}
```
Content copied to clipboard
=== "pom.xml"
```xml
com.hexagonkt http_server_netty_epoll $hexagonVersion io.netty netty-transport-native-epoll $nettyVersion linux-$arch
```
Content copied to clipboard