http_server_netty
Netty adapter for the http_server.md port.
Install the Dependency
=== "build.gradle"
```groovy
dependencies {
implementation("com.hexagontk.http:http_server_netty:$hexagonVersion")
}
```
Content copied to clipboard
=== "pom.xml"
```xml
com.hexagontk.http http_server_netty $hexagonVersion
```
Content copied to clipboard
epoll
=== "build.gradle"
```groovy
dependencies {
implementation("com.hexagontk.http: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.hexagontk.http http_server_netty_epoll $hexagonVersion io.netty netty-transport-native-epoll $nettyVersion linux-$arch
```
Content copied to clipboard
io_uring
=== "build.gradle"
```groovy
dependencies {
implementation("com.hexagontk.http:http_server_netty_io_uring:$hexagonVersion")
// $arch could be 'x86_64' among other linux architectures
implementation("io.netty:netty-transport-native-io_uring:$nettyVersion:linux-$arch")
}
```
Content copied to clipboard
=== "pom.xml"
```xml
com.hexagontk.http http_server_netty_io_uring $hexagonVersion io.netty netty-transport-native-io_uring $nettyVersion linux-$arch
```
Content copied to clipboard