We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 596fe22 commit 0228a70Copy full SHA for 0228a70
src/main/java/dev/openfeature/sdk/Awaitable.java
@@ -4,6 +4,10 @@
4
* A class to help with synchronization by allowing the optional awaiting of the associated action.
5
*/
6
public class Awaitable {
7
+
8
+ /**
9
+ * An already-completed Awaitable. Awaiting this will return immediately.
10
+ */
11
public static final Awaitable FINISHED = new Awaitable(true);
12
13
private boolean isDone = false;
0 commit comments