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

org.webbitserver.WebSocketHandler Maven / Gradle / Ivy

There is a newer version: 0.4.15
Show newest version
package org.webbitserver;

public interface WebSocketHandler {
    void onOpen(WebSocketConnection connection) throws Exception;

    void onClose(WebSocketConnection connection) throws Exception;

    void onMessage(WebSocketConnection connection, String msg) throws Throwable;

    void onMessage(WebSocketConnection connection, byte[] msg) throws Throwable;

    void onPong(WebSocketConnection connection, String msg) throws Throwable;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy