Skip to main content

Posts Tagged ‘Completable-future’

Istock 939030682

Implementation of Completable Future of Java 8

Completable-Future is used for asynchronous programming in Java. Asynchronous programming means writing non-blocking code by running a task on a separate thread than the main application thread and notifying the main thread about its progress, completion or failure. This way, main thread does not block/wait for the completion of the task and it can execute other tasks […]