Understanding the Evolution of Future in Java Asynchronous Programming
The Problem with Basic Future
When discussing asynchronous programming, the Future interface immediately comes to mind. However, JDK's Future has a significant limitation that many developers overlook.
When you call future.get() on the client side, it blocks the current thread until the result is available. This is essentially a half-baked impl ...
Posted on Sat, 12 Sep 2026 16:10:49 +0000 by HaXoRL33T
Mastering CompletableFuture: From Daemon Threads to Advanced Usage
The Daemon Thread Traps in CompletableFuture
When using CompletableFuture, developers often encounter a situation where the program terminates before the asynchronous task completes. Consider this example:
public class MainTest {
public static void main(String[] args) throws Exception {
CompletableFuture.supplyAsync(() -> {
...
Posted on Sat, 25 Jul 2026 16:59:37 +0000 by as22607
CompletableFuture
Helper Utility Class
import java.util.StringJoiner;
public class DebugUtil {
public static void delay(long millis) {
try {
Thread.sleep(millis);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
public static void logTimeAndThread(String tag) {
String result = new ...
Posted on Tue, 09 Jun 2026 18:10:10 +0000 by BlueSkyIS
Understanding the Underlying Mechanisms of CompletableFuture in Java
Understanding the Underlying Mechanisms of CompletableFuture in Java
CompletableFuture, introduced in Java 8, represents a fundamental advancement in asynchronous programming. Compared to traditional Future implementations, it offers greater flexibility through support for callbacks, composition, and sophisticated exception handling. The under ...
Posted on Mon, 11 May 2026 07:48:34 +0000 by xzilla