Interface UnresolvedFuture
public sealed interface UnresolvedFuture
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enumAwait-tree node kind, walked by the state machine to encode thedo_awaitrequest. -
Method Summary
Modifier and TypeMethodDescriptionList<? extends UnresolvedFuture> Child await nodes; empty for aUnresolvedFuture.Kind.SINGLEleaf.booleanisDone()kind()This await node's combinator kind;UnresolvedFuture.Kind.SINGLEfor a leaf.intThe notification handle; valid only whenkind()isUnresolvedFuture.Kind.SINGLE.
-
Method Details
-
isDone
boolean isDone() -
kind
UnresolvedFuture.Kind kind()This await node's combinator kind;UnresolvedFuture.Kind.SINGLEfor a leaf. -
singleHandle
int singleHandle()The notification handle; valid only whenkind()isUnresolvedFuture.Kind.SINGLE. -
combinatorChildren
List<? extends UnresolvedFuture> combinatorChildren()Child await nodes; empty for aUnresolvedFuture.Kind.SINGLEleaf.
-