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

com.kucoin.futures.core.websocket.PrintCallback Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2019 Mek Global Limited
 */
package com.kucoin.futures.core.websocket;

import com.kucoin.futures.core.exception.KucoinFuturesApiException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Created by chenshiwei on 2019/1/19.
 */
public class PrintCallback implements KucoinFuturesAPICallback {

    private static final Logger LOGGER = LoggerFactory.getLogger(PrintCallback.class);

    @Override
    public void onResponse(T response) throws KucoinFuturesApiException {
        LOGGER.debug("Got response: {}", response);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy