(Object symbol, Object... optionalArgs)
| 4741 | } |
| 4742 | |
| 4743 | public java.util.concurrent.CompletableFuture<Object> watchLiquidations(Object symbol, Object... optionalArgs) |
| 4744 | { |
| 4745 | |
| 4746 | return java.util.concurrent.CompletableFuture.supplyAsync(() -> { |
| 4747 | |
| 4748 | Object since = Helpers.getArg(optionalArgs, 0, null); |
| 4749 | Object limit = Helpers.getArg(optionalArgs, 1, null); |
| 4750 | Object parameters = Helpers.getArg(optionalArgs, 2, new java.util.HashMap<String, Object>() {{}}); |
| 4751 | if (Helpers.isTrue(Helpers.GetValue(this.has, "watchLiquidationsForSymbols"))) |
| 4752 | { |
| 4753 | return (this.watchLiquidationsForSymbols(new java.util.ArrayList<Object>(java.util.Arrays.asList(symbol)), since, limit, parameters)).join(); |
| 4754 | } |
| 4755 | throw new NotSupported((String)Helpers.add(this.id, " watchLiquidations() is not supported yet")) ; |
| 4756 | }); |
| 4757 | |
| 4758 | } |
| 4759 | |
| 4760 | public java.util.concurrent.CompletableFuture<Object> watchLiquidationsForSymbols(Object symbols, Object... optionalArgs) |
| 4761 | { |
nothing calls this directly
no test coverage detected