It should be possible to create the current executor without providing a baseExecutor. That should be using the default executor used for the CompletableFuture.
Dummy (lacking a better one) implementation of such a base executor (in Kotlin):
val baseExecutor = Executor { CompletableFuture.runAsync(it) }
It should be possible to create the current executor without providing a
baseExecutor. That should be using the default executor used for theCompletableFuture.Dummy (lacking a better one) implementation of such a base executor (in Kotlin):