https://github.com/benslabbert/simple-netty-server
Playing with netty
https://github.com/benslabbert/simple-netty-server
Last synced: about 1 year ago
JSON representation
Playing with netty
- Host: GitHub
- URL: https://github.com/benslabbert/simple-netty-server
- Owner: BenSlabbert
- Created: 2021-09-21T09:08:15.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-31T12:39:53.000Z (over 1 year ago)
- Last Synced: 2025-02-12T15:48:11.372Z (over 1 year ago)
- Language: Java
- Size: 58.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Netty Server
Playing with netty as a server. Playing around with the concepts and NIO programming.
https://learning.oreilly.com/library/view/netty-in-action/9781617291470/kindle_split_015.html#ch06table03
lists the lifecycle methods of interface ChannelInboundHandler.
https://learning.oreilly.com/library/view/netty-in-action/9781617291470/kindle_split_015.html#ch06table04
shows the methods defined locally by ChannelOutboundHandler
## Todo
1. swap JSON for protobuf
2. add compression for funzies. Update the protocol to include an extra byte which will describe 8 flags (each bit is a feature), one of those will be compression.
3. add tls for funzies