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

com.openfin.desktop.net.WebSocketEventHandler Maven / Gradle / Ivy

There is a newer version: 11.0.2
Show newest version
package com.openfin.desktop.net;

/**
 * Created by wche on 9/21/2016.
 */
public interface WebSocketEventHandler {
    public void onOpen();

    public void onMessage(WebSocketMessage message);

    public void onClose(int statusCode, String reason);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy