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