All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy