info.bitrich.xchangestream.wex.WexStreamingExchange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-stream-wex Show documentation
Show all versions of xchange-stream-wex Show documentation
Development fork. Not for general use.
The newest version!
package info.bitrich.xchangestream.wex;
import info.bitrich.xchangestream.core.ProductSubscription;
import info.bitrich.xchangestream.core.StreamingExchange;
import info.bitrich.xchangestream.core.StreamingMarketDataService;
import info.bitrich.xchangestream.service.pusher.PusherStreamingService;
import io.reactivex.Completable;
import org.knowm.xchange.exceptions.NotYetImplementedForExchangeException;
import org.knowm.xchange.wex.v3.WexExchange;
/**
* Created by Lukas Zaoralek on 16.11.17.
*/
public class WexStreamingExchange extends WexExchange implements StreamingExchange {
private static final String API_KEY = "ee987526a24ba107824c";
private static final String APP_CLUSTER = "eu";
private final PusherStreamingService streamingService;
private WexStreamingMarketDataService streamingMarketDataService;
public WexStreamingExchange() {
streamingService = new PusherStreamingService(API_KEY, APP_CLUSTER);
}
@Override
protected void initServices() {
super.initServices();
streamingMarketDataService = new WexStreamingMarketDataService(streamingService, marketDataService);
}
@Override
public Completable connect(ProductSubscription... args) {
return streamingService.connect();
}
@Override
public Completable disconnect() {
return streamingService.disconnect();
}
@Override
public StreamingMarketDataService getStreamingMarketDataService() {
return streamingMarketDataService;
}
@Override
public boolean isAlive() {
return this.streamingService.isSocketOpen();
}
@Override
public void useCompressedMessages(boolean compressedMessages) { streamingService.useCompressedMessages(compressedMessages); }
}