Class KucoinStreamingTradeService
java.lang.Object
info.bitrich.xchangestream.kucoin.KucoinStreamingTradeService
- All Implemented Interfaces:
StreamingTradeService
-
Constructor Summary
ConstructorDescriptionKucoinStreamingTradeService
(info.bitrich.xchangestream.kucoin.KucoinStreamingService service) -
Method Summary
Modifier and TypeMethodDescriptionio.reactivex.rxjava3.core.Observable<Order>
getOrderChanges
(CurrencyPair currencyPair, Object... args) Get the changes of order state for the logged-in user.io.reactivex.rxjava3.core.Observable<KucoinWebSocketOrderEvent>
getRawOrderChanges
(CurrencyPair currencyPair) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface info.bitrich.xchangestream.core.StreamingTradeService
getOrderChanges, getUserTrades, getUserTrades, getUserTrades
-
Constructor Details
-
KucoinStreamingTradeService
public KucoinStreamingTradeService(info.bitrich.xchangestream.kucoin.KucoinStreamingService service)
-
-
Method Details
-
getOrderChanges
public io.reactivex.rxjava3.core.Observable<Order> getOrderChanges(CurrencyPair currencyPair, Object... args) Description copied from interface:StreamingTradeService
Get the changes of order state for the logged-in user.Warning: there are currently no guarantees that messages will arrive in order, that messages will not be skipped, or that any initial state message will be sent on connection. Most exchanges have a recommended approach for managing this, involving timestamps, sequence numbers and a separate REST API for re-sync when inconsistencies appear. You should implement these approaches, if required, by combining calls to this method with
TradeService.getOpenOrders()
.Emits
NotConnectedException
When not connected to the WebSocket API.Immediately throws
ExchangeSecurityException
if called without authentication details- Specified by:
getOrderChanges
in interfaceStreamingTradeService
- Parameters:
currencyPair
- Currency pair of the order changes.- Returns:
Observable
that emitsOrder
when exchange sends the update.
-
getRawOrderChanges
public io.reactivex.rxjava3.core.Observable<KucoinWebSocketOrderEvent> getRawOrderChanges(CurrencyPair currencyPair)
-