MCPcopy Index your code
hub / github.com/ccxt/ccxt / handleDeltas

Method handleDeltas

java/lib/src/main/java/io/github/ccxt/Exchange.java:4248–4254  ·  view source on GitHub ↗
(Object orderbook, Object deltas)

Source from the content-addressed store, hash-verified

4246 }
4247
4248 public void handleDeltas(Object orderbook, Object deltas)
4249 {
4250 for (var i = 0; Helpers.isLessThan(i, Helpers.getArrayLength(deltas)); i++)
4251 {
4252 this.handleDelta(orderbook, Helpers.GetValue(deltas, i));
4253 }
4254 }
4255
4256 public void handleDelta(Object bookside, Object delta)
4257 {

Callers 1

loadOrderBookMethod · 0.95

Calls 4

isLessThanMethod · 0.95
getArrayLengthMethod · 0.95
handleDeltaMethod · 0.95
GetValueMethod · 0.95

Tested by

no test coverage detected