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

Method init

java/tests/src/main/java/tests/exchange/TestMain.java:52–68  ·  view source on GitHub ↗
(Object exchangeId, Object symbolArgv, Object methodArgv)

Source from the content-addressed store, hash-verified

50 }
51
52 public java.util.concurrent.CompletableFuture<Object> init(Object exchangeId, Object symbolArgv, Object methodArgv)
53 {
54
55 return java.util.concurrent.CompletableFuture.supplyAsync(() -> {
56
57 try
58 {
59 (this.initInner(exchangeId, symbolArgv, methodArgv)).join();
60 } catch(Exception e)
61 {
62 dump("[TEST_FAILURE]"); // tell run-tests.js this is failure
63 throw new RuntimeException(e);
64 }
65 return true;
66 });
67
68 }
69
70 public java.util.concurrent.CompletableFuture<Object> initInner(Object exchangeId, Object symbolArgv, Object methodArgv)
71 {

Callers 3

mainMethod · 0.95
extendedHmacSha256Method · 0.45
hmacMethod · 0.45

Calls 2

initInnerMethod · 0.95
dumpMethod · 0.45

Tested by

no test coverage detected