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

com.gitee.rabbitnoteeth.bedrock.http.server.handler.IWebSocketEndPoint Maven / Gradle / Ivy

The newest version!
package com.gitee.rabbitnoteeth.bedrock.http.server.handler;

import io.vertx.core.http.ServerWebSocket;

public interface IWebSocketEndPoint {

    Class server();

    String path();

    void onOpen(ServerWebSocket socket);

    void onMessage(ServerWebSocket socket, String message);

    void onClose(ServerWebSocket socket);

    void onException(ServerWebSocket socket, Throwable e);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy