Class IterableSideInput<T>

  • All Implemented Interfaces:
    org.apache.beam.sdk.transforms.Materializations.IterableView<T>

    public class IterableSideInput<T>
    extends java.lang.Object
    implements org.apache.beam.sdk.transforms.Materializations.IterableView<T>
    An implementation of a iterable side input that utilizes the Beam Fn State API to fetch values.
    • Constructor Summary

      Constructors 
      Constructor Description
      IterableSideInput​(Cache<?,​?> cache, BeamFnStateClient beamFnStateClient, java.lang.String instructionId, org.apache.beam.model.fnexecution.v1.BeamFnApi.StateKey stateKey, org.apache.beam.sdk.coders.Coder<T> valueCoder)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Iterable<T> get()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • IterableSideInput

        public IterableSideInput​(Cache<?,​?> cache,
                                 BeamFnStateClient beamFnStateClient,
                                 java.lang.String instructionId,
                                 org.apache.beam.model.fnexecution.v1.BeamFnApi.StateKey stateKey,
                                 org.apache.beam.sdk.coders.Coder<T> valueCoder)
    • Method Detail

      • get

        public java.lang.Iterable<T> get()
        Specified by:
        get in interface org.apache.beam.sdk.transforms.Materializations.IterableView<T>