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

com.quotemedia.streamer.client.OnReconnect Maven / Gradle / Ivy

Go to download

Java streaming client that provides easy-to-use client APIs to connect and subscribe to QuoteMedia's market data streaming services. https://quotemedia.com/

The newest version!
package com.quotemedia.streamer.client;

import com.quotemedia.streamer.messages.control.ConnectResponse;
import com.quotemedia.streamer.messages.control.MissedDataSent;
import com.quotemedia.streamer.messages.control.ReconnectResponse;

/**
 * OnReconenct callback function interface.
 */
public interface OnReconnect {
    void onConnectionSuccess(ConnectResponse connectResponse);

    void error(Object error);

    void onMissedData(MissedDataSent missedDataResponse);

    void onReconnectResponse(ReconnectResponse reconnectResponse);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy