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")
}
```

=== "pom.xml"

```xml
com.hexagontk.httphttp_server_netty$hexagonVersion
```

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")
}
```

=== "pom.xml"

```xml
com.hexagontk.httphttp_server_netty_epoll$hexagonVersionio.nettynetty-transport-native-epoll$nettyVersionlinux-$arch
```

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")
}
```

=== "pom.xml"

```xml
com.hexagontk.httphttp_server_netty_io_uring$hexagonVersionio.nettynetty-transport-native-io_uring$nettyVersionlinux-$arch
```

Packages

Link copied to clipboard

Code implementing the Netty HTTP server adapter.

Link copied to clipboard

Code implementing the Netty HTTP server adapter using Epoll transport.

Link copied to clipboard

Code implementing the Netty HTTP server adapter using io_uring transport.