Package org.apache.beam.sdk.state
Interface ValueState<T>
- Type Parameters:
T
- The type of value being stored.
- All Superinterfaces:
ReadableState<@Nullable T>
,State
A
ReadableState
cell containing a single value.-
Method Summary
-
Method Details
-
write
Set the value. -
read
Read the current value, blocking until it is available.If there will be many calls to
ReadableState.read()
for different state in short succession, you should first callReadableState.readLater()
for all of them so the reads can potentially be batched (depending on the underlying implementation}.The returned object should be independent of the underlying state. Any direct modification of the returned object should not modify state without going through the appropriate state interface, and modification to the state should not be mirrored in the returned object.
Note that
null
will be returned if the value has never been written.- Specified by:
read
in interfaceReadableState<T>
-
readLater
ValueState<T> readLater()Description copied from interface:ReadableState
Indicate that the value will be read later.This allows an implementation to start an asynchronous prefetch or to include this state in the next batch of reads.
- Specified by:
readLater
in interfaceReadableState<T>
- Returns:
- this for convenient chaining
-