CompletableFulture runAsync not starting new thread

168 Views Asked by At
CompletableFuture.runAsync(() -> {
//somecode
System.out.println ("Do something")
}, Executors.newWorkStealingPool() );

I want to do something in async. But my code is never executed. It is not able to get thread to execute ?

0

There are 0 best solutions below