com.kucoin.sdk.websocket.PrintCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kucoin-java-sdk Show documentation
Show all versions of kucoin-java-sdk Show documentation
Fixed fork of the official Kucoin SDK
The newest version!
/**
* Copyright 2019 Mek Global Limited.
*/
package com.kucoin.sdk.websocket;
import com.kucoin.sdk.exception.KucoinApiException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Created by chenshiwei on 2019/1/19.
*/
public class PrintCallback implements KucoinAPICallback {
private static final Logger LOGGER = LoggerFactory.getLogger(PrintCallback.class);
@Override
public void onResponse(T response) throws KucoinApiException {
LOGGER.debug("Got response: {}", response);
}
}