com.binance.connector.client.utils.WebSocketCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance-connector-java Show documentation
Show all versions of binance-connector-java Show documentation
lightweight connector to API
package com.binance.connector.client.utils;
@FunctionalInterface
public interface WebSocketCallback {
/**
* onReceive will be called when data is received from server.
*
* @param data The data send by server.
*/
void onReceive(String data);
}