com.xeiam.xchange.bitstamp.service.polling.BitstampBasePollingService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-bitstamp Show documentation
Show all versions of xchange-bitstamp Show documentation
XChange implementation for the Bitstamp Exchange
package com.xeiam.xchange.bitstamp.service.polling;
import java.io.IOException;
import java.util.List;
import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.currency.CurrencyPair;
import com.xeiam.xchange.service.BaseExchangeService;
import com.xeiam.xchange.service.polling.BasePollingService;
/**
* @author timmolter
*/
public class BitstampBasePollingService extends BaseExchangeService implements BasePollingService {
/**
* Constructor
*
* @param exchange
*/
public BitstampBasePollingService(Exchange exchange) {
super(exchange);
}
@Override
public List getExchangeSymbols() throws IOException {
return exchange.getMetaData().getCurrencyPairs();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy