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

io.github.xinyangpan.crypto4j.binance.websocket.BinanceMarketManager Maven / Gradle / Ivy

There is a newer version: 0.1.4
Show newest version
package io.github.xinyangpan.crypto4j.binance.websocket;

import java.time.LocalDateTime;

import io.github.xinyangpan.crypto4j.binance.websocket.impl.BinanceSubscriber;
import io.github.xinyangpan.crypto4j.core.websocket.Heartbeat;
import io.github.xinyangpan.crypto4j.core.websocket.WebSocketManager;

public class BinanceMarketManager extends WebSocketManager {

	public BinanceMarketManager() {
		this.setName("Binance");
		this.setHeartbeat(new Heartbeat());
	}

	public BinanceMarketManager(String url) {
		this.setUrl(url);
		this.setName(String.format("Binance<%s>", LocalDateTime.now()));
		this.setHeartbeat(new Heartbeat());
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy