MCPcopy
hub / github.com/ccxt/ccxt / fetchTime

Method fetchTime

java/lib/src/main/java/io/github/ccxt/exchanges/Coinmate.java:150–154  ·  view source on GitHub ↗
(Map<String, Object> params)

Source from the content-addressed store, hash-verified

148 public CompletableFuture<MarginModes> fetchMarginModesAsync(String[] symbols, Map<String, Object> params) { return fetchMarginModesAsync(symbols == null ? null : java.util.Arrays.asList(symbols), params); }
149
150 @SuppressWarnings("unchecked")
151 public Long fetchTime(Map<String, Object> params) {
152 Object res = Helpers.joinUnwrapped(super.fetchTime(params));
153 return (res instanceof Number n) ? n.longValue() : null;
154 }
155 public Long fetchTime() { return fetchTime((Map<String, Object>) null); }
156 @SuppressWarnings("unchecked")
157 public CompletableFuture<Long> fetchTimeAsync(Map<String, Object> params) {

Callers 1

fetchTimeAsyncMethod · 0.45

Calls 1

joinUnwrappedMethod · 0.95

Tested by

no test coverage detected