@Retention(value=RUNTIME)
@Target(value=METHOD)
@Documented
public @interface TIOnBeforeBytes
example:
import org.tio.core.ChannelContext;
\@TIOnBeforeBytes
public TioWebsocketRequest onBeforeBytes(ChannelContext channelContext, byte[] bytes) {
return TioWebsocketRequest.builder().event("ping").object("any").build
}