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 ?
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 ?
Copyright © 2021 Jogjafile Inc.