Skip to content

Commit 4fcfe67

Browse files
committed
add javadoc for JDKHttpFuture
1 parent 2b0dce2 commit 4fcfe67

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

scribejava-core/src/main/java/com/github/scribejava/core/httpclient/jdk/JDKHttpFuture.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
import java.util.concurrent.TimeUnit;
66
import java.util.concurrent.TimeoutException;
77

8+
/**
9+
* Fake Future. Just to have Future API for the default JDK Http client. It's NOT Async in any way. Just facade.<br>
10+
* That's it. Sync execution with Async methods.
11+
*/
812
public class JDKHttpFuture<V> implements Future<V> {
913

1014
private final Exception exception;

0 commit comments

Comments
 (0)