AsyncFunction
org.apache.flink.api.async.AsyncFunction
@PublicEvolving
A function to trigger async I/O operations.
For each asyncInvoke an async io operation can be triggered, and once it has been done, the result can be collected by calling ResultFuture.complete. For each async operation, its context is stored in the operator immediately after invoking asyncInvoke, avoiding blocking for each stream input as long as the internal buffer is not full.
ResultFuture can be passed into callbacks or futures to collect the result data. An error can also be propagate to the async IO operator by ResultFuture.completeExceptionally.
Attributes
- IN
The type of the input element
- OUT
The type of the output elements
- Graph
- Supertypes
- trait Functiontrait Serializableclass Objecttrait Matchableclass Any
- Known subtypes