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

fr.braindead.websocket.server.WebSocketServerHandlers Maven / Gradle / Ivy

The newest version!
package fr.braindead.websocket.server;

import fr.braindead.websocket.WebSocket;

/**
 *
 * Created by leiko on 2/14/17.
 */
public interface WebSocketServerHandlers {

    void onOpen(WebSocket client);

    void onMessage(WebSocket client, String message);

    void onClose(WebSocket client, int code, String reason, boolean remote);

    void onError(WebSocket client, Throwable ex);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy