@Retention(value=RUNTIME)
@Target(value=METHOD)
@Documented
public @interface TIOnBeforeText
example:
import org.tio.core.ChannelContext;
\@TIOnBeforeText
public TioWebsocketRequest onBeforeText(ChannelContext channelContext, String text) {
return TioWebsocketRequest.builder().event("ping").object("any").build
}