https://github.com/nettyplus/netty5-transports
Netty 5 transports ⭐️
https://github.com/nettyplus/netty5-transports
java netty
Last synced: 4 months ago
JSON representation
Netty 5 transports ⭐️
- Host: GitHub
- URL: https://github.com/nettyplus/netty5-transports
- Owner: nettyplus
- License: apache-2.0
- Created: 2024-07-04T18:36:36.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-01-20T02:34:26.000Z (4 months ago)
- Last Synced: 2025-01-30T16:40:01.959Z (4 months ago)
- Topics: java, netty
- Language: Java
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# netty5-transports
## Transports
- nio
- epoll
- io_uring
- kqueue## Usage
```javaimport io.github.nettyplus.netty5.transports.NettyTransport;
public class Example {
public static void main(String[] args) {
for (NettyTransport transport : NettyTransport.values()) {
System.out.println(transport.name() + " isAvailable=" + transport.isAvailable());
}
}
}
```