| Annotation Type | Description |
|---|---|
| NettyController |
Class that is marked with this annotation is considered to be a controller that is able to handle
various events received from Netty server.
|
| NettyFilter |
This annotation can be used to mark so called "Filters" - handlers that will be
invoked before any
NettyController
instances will start message processing or after it will be finished. |
| NettyMessageBody |
This annotation can be used to mark a method parameter that will hold received
message body
|
| NettyOnConnect |
This annotation can be used to mark a method that will become a connection event
handler for the given TCP server.
|
| NettyOnDisconnect |
This annotation can be used to mark a method that will become a disconnect event
handler for the given TCP server.
|
| NettyOnMessage |
This annotation can be used to mark a method that will become a handler for the given
TCP event with data.
|