Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nettyplus/netty5-transports
Netty 5 transports ⭐️
https://github.com/nettyplus/netty5-transports
java netty
Last synced: 27 days 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 (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T02:51:46.000Z (about 2 months ago)
- Last Synced: 2024-09-25T19:41:31.089Z (about 1 month ago)
- Topics: java, netty
- Language: Java
- Homepage:
- Size: 41 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());
}
}
}
```