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

com.savl.ripple.client.transport.TransportEventHandler Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.savl.ripple.client.transport;

import org.json.JSONObject;

public interface TransportEventHandler {
    void onMessage(JSONObject msg);
    void onConnecting(int attempt);
    void onDisconnected(boolean willReconnect);
    void onError(Exception error);
    void onConnected();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy