com.gitee.rabbitnoteeth.bedrock.http.server.handler.ISockJSEndPoint Maven / Gradle / Ivy
The newest version!
package com.gitee.rabbitnoteeth.bedrock.http.server.handler;
import io.vertx.ext.web.handler.sockjs.SockJSSocket;
public interface ISockJSEndPoint {
Class> server();
String path();
void onOpen(SockJSSocket socket);
void onMessage(SockJSSocket socket, String message);
void onDrain(SockJSSocket socket);
void onException(SockJSSocket socket, Throwable e);
void onClose(SockJSSocket socket);
void onEnd(SockJSSocket socket);
}