Interface ReadableState<T>

Type Parameters:
T - The type of value returned by read().
All Known Subinterfaces:
BagState<T>, CombiningState<InputT,AccumT,OutputT>, GroupingState<InputT,OutputT>, OrderedListState<T>, SetState<T>, ValueState<T>, WatermarkHoldState

public interface ReadableState<T>
A State that can be read via read().

Use readLater() for marking several states for prefetching. Runners can potentially batch these into one read.

  • Method Summary

    Modifier and Type
    Method
    Description
    Read the current value, blocking until it is available.
    Indicate that the value will be read later.
  • Method Details

    • read

      T read()
      Read the current value, blocking until it is available.

      If there will be many calls to read() for different state in short succession, you should first call 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.

    • readLater

      ReadableState<T> readLater()
      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.

      Returns:
      this for convenient chaining