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

fr.braindead.websocket.client.WebSocketClientHandlers Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package fr.braindead.websocket.client;

/**
 * Created by leiko on 27/02/15.
 *
 */
public interface WebSocketClientHandlers {

    void onOpen();

    void onMessage(String msg);

    void onClose(int code, String reason);

    void onError(Exception e);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy