Add class level docs for AsyncResult

This commit is contained in:
Ben Woo 2023-09-14 00:37:33 +08:00
parent 82c84c2c7c
commit 2f3306aa97
No known key found for this signature in database
GPG Key ID: FB2A3645536E12C8
1 changed files with 5 additions and 0 deletions

View File

@ -6,6 +6,11 @@ import java.util.concurrent.CompletableFuture;
import java.util.function.Consumer;
import java.util.function.Function;
/**
* Represents the result of an asynchronous operation that wraps a {@link CompletableFuture}.
*
* @param <T> The type of the value.
*/
public final class AsyncResult<T> {
/**