- TioController - net.zhfish.tio.annotation中的注释类型
-
Enable Tio-Websocket for spring boot application
- TIOnAfterHandshake - net.zhfish.tio.annotation中的注释类型
-
example:
import org.tio.http.common.HttpRequest;
import org.tio.http.common.HttpResponse;
import org.tio.core.ChannelContext;
\@TIOnAfterHandshake
public void onAfterHandshake(HttpRequest httpRequest, HttpResponse httpResponse, ChannelContext channelContext) {}
- TIOnBeforeBytes - net.zhfish.tio.annotation中的注释类型
-
example:
import org.tio.core.ChannelContext;
\@TIOnBeforeBytes
public TioWebsocketRequest onBeforeBytes(ChannelContext channelContext, byte[] bytes) {
return TioWebsocketRequest.builder().event("ping").object("any").build
}
- TIOnBeforeText - net.zhfish.tio.annotation中的注释类型
-
example:
import org.tio.core.ChannelContext;
\@TIOnBeforeText
public TioWebsocketRequest onBeforeText(ChannelContext channelContext, String text) {
return TioWebsocketRequest.builder().event("ping").object("any").build
}
- TIOnBytes - net.zhfish.tio.annotation中的注释类型
-
example:
import org.tio.core.ChannelContext;
\@TIOnBytes
public void onBytes(ChannelContext channelContext, byte[] bytes) {}
- TIOnClose - net.zhfish.tio.annotation中的注释类型
-
example:
import org.tio.core.ChannelContext;
\@TIOnClose
public void onClose(ChannelContext channelContext) {}
- TIOnHandshake - net.zhfish.tio.annotation中的注释类型
-
example:
import org.tio.http.common.HttpRequest;
import org.tio.http.common.HttpResponse;
import org.tio.core.ChannelContext;
\@TIOnHandshake
public void handshake(HttpRequest httpRequest, HttpResponse httpResponse, ChannelContext channelContext) {}
- TIOnMap - net.zhfish.tio.annotation中的注释类型
-
example:
import org.tio.core.ChannelContext;
\@TIOnMap
public void onMapDefault(ChannelContext channelContext, String event, AnyObject object) {}
\@TIOnMap("ping")
public void onMap(ChannelContext channelContext, AnyObject object) {}
- TIOnText - net.zhfish.tio.annotation中的注释类型
-
example:
import org.tio.core.ChannelContext;
\@TIOnText
public void onText(ChannelContext channelContext, String text) {}
- TioProps - net.zhfish.tio.utils中的类
-
Tio-Websocket properties
- TioProps() - 类 的构造器net.zhfish.tio.utils.TioProps
-
- TioProps.Websocket - net.zhfish.tio.utils中的类
-
websocket properties class
- TioWebsocketAutoConfiguration - net.zhfish.tio.autoconfigure中的类
-
- TioWebsocketAutoConfiguration() - 类 的构造器net.zhfish.tio.autoconfigure.TioWebsocketAutoConfiguration
-
- tioWebsocketBean() - 类 中的方法net.zhfish.tio.autoconfigure.TioWebsocketAutoConfiguration
-
- TioWebsocketException - net.zhfish.tio.exception中的异常错误
-
- TioWebsocketException() - 异常错误 的构造器net.zhfish.tio.exception.TioWebsocketException
-
- TioWebsocketException(String) - 异常错误 的构造器net.zhfish.tio.exception.TioWebsocketException
-
- TioWebsocketException(String, Throwable) - 异常错误 的构造器net.zhfish.tio.exception.TioWebsocketException
-
- TioWebsocketException(Throwable) - 异常错误 的构造器net.zhfish.tio.exception.TioWebsocketException
-
- TioWebsocketException(String, Throwable, boolean, boolean) - 异常错误 的构造器net.zhfish.tio.exception.TioWebsocketException
-
- TioWebsocketManager - net.zhfish.tio.bean中的类
-
Tio-Websocket session manager
- TioWebsocketManager(TioProps.Websocket, IWsMsgHandler) - 类 的构造器net.zhfish.tio.bean.TioWebsocketManager
-
- TioWebsocketMethodMapper - net.zhfish.tio.bean中的类
-
Tio-Websocket Clazz-Method Mapper
- TioWebsocketMethodMapper() - 类 的构造器net.zhfish.tio.bean.TioWebsocketMethodMapper
-
- TioWebSocketMethods - net.zhfish.tio.bean中的类
-
Tio-WebSocket methods
- TioWebSocketMethods() - 类 的构造器net.zhfish.tio.bean.TioWebSocketMethods
-
- tioWebsocketMsgBean() - 类 中的方法net.zhfish.tio.autoconfigure.TioWebsocketAutoConfiguration
-
- TioWebsocketMsgHandler - net.zhfish.tio.bean中的类
-
TioWebsocket message handler
- TioWebsocketMsgHandler() - 类 的构造器net.zhfish.tio.bean.TioWebsocketMsgHandler
-
- TioWebsocketRequest - net.zhfish.tio.bean中的类
-
Tio-Websocket Response for beforeOnText and beforeOnBytes
- TioWebsocketRequest() - 类 的构造器net.zhfish.tio.bean.TioWebsocketRequest
-
- TioWebsocketUtil - net.zhfish.tio.utils中的类
-
Tio-Websocket's Util