(Callable<T> callable)
| 49 | } |
| 50 | |
| 51 | private <T> Future<T> submit(Callable<T> callable) { |
| 52 | return executor.submit(callable); |
| 53 | } |
| 54 | |
| 55 | private Object call(String func, Object... args) throws Exception { |
| 56 | return submit(() -> Async.run(jsObject, func, args)).get().get(); |
no outgoing calls
no test coverage detected