We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b0dce2 commit 4fcfe67Copy full SHA for 4fcfe67
1 file changed
scribejava-core/src/main/java/com/github/scribejava/core/httpclient/jdk/JDKHttpFuture.java
@@ -5,6 +5,10 @@
5
import java.util.concurrent.TimeUnit;
6
import java.util.concurrent.TimeoutException;
7
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
+ */
12
public class JDKHttpFuture<V> implements Future<V> {
13
14
private final Exception exception;
0 commit comments