Package org.apache.beam.runners.dataflow
Class BatchStatefulParDoOverrides.BatchStatefulDoFn<K,V,OutputT>  
java.lang.Object
org.apache.beam.sdk.transforms.DoFn<KV<K,Iterable<KV<Instant,WindowedValue<KV<K,V>>>>>,OutputT>
    
org.apache.beam.runners.dataflow.BatchStatefulParDoOverrides.BatchStatefulDoFn<K,V,OutputT>  
- All Implemented Interfaces:
 Serializable,HasDisplayData
- Enclosing class:
 BatchStatefulParDoOverrides
public static class BatchStatefulParDoOverrides.BatchStatefulDoFn<K,V,OutputT>  
extends DoFn<KV<K,Iterable<KV<Instant,WindowedValue<KV<K,V>>>>>,OutputT>    
A key-preserving 
DoFn that explodes an iterable that has been grouped by key and
 window.- See Also:
 
- 
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.beam.sdk.transforms.DoFn
DoFn.AlwaysFetched, DoFn.BoundedPerElement, DoFn.BundleFinalizer, DoFn.Element, DoFn.FieldAccess, DoFn.FinishBundle, DoFn.FinishBundleContext, DoFn.GetInitialRestriction, DoFn.GetInitialWatermarkEstimatorState, DoFn.GetRestrictionCoder, DoFn.GetSize, DoFn.GetWatermarkEstimatorStateCoder, DoFn.Key, DoFn.MultiOutputReceiver, DoFn.NewTracker, DoFn.NewWatermarkEstimator, DoFn.OnTimer, DoFn.OnTimerContext, DoFn.OnTimerFamily, DoFn.OnWindowExpiration, DoFn.OnWindowExpirationContext, DoFn.OutputReceiver<T>, DoFn.ProcessContext, DoFn.ProcessContinuation, DoFn.ProcessElement, DoFn.RequiresStableInput, DoFn.RequiresTimeSortedInput, DoFn.Restriction, DoFn.Setup, DoFn.SideInput, DoFn.SplitRestriction, DoFn.StartBundle, DoFn.StartBundleContext, DoFn.StateId, DoFn.Teardown, DoFn.TimerFamily, DoFn.TimerId, DoFn.Timestamp, DoFn.TruncateRestriction, DoFn.UnboundedPerElement, DoFn.WatermarkEstimatorState, DoFn.WindowedContext - 
Method Summary
Modifier and TypeMethodDescriptionReturns aTypeDescriptorcapturing what is known statically about the output type of thisDoFninstance's most-derived class.voidprocessElement(DoFn<KV<K, Iterable<KV<Instant, WindowedValue<KV<K, V>>>>>, OutputT>.ProcessContext c, BoundedWindow window) voidsetup(PipelineOptions options) voidteardown()Methods inherited from class org.apache.beam.sdk.transforms.DoFn
getAllowedTimestampSkew, getInputTypeDescriptor, populateDisplayData, prepareForProcessing 
- 
Method Details
- 
getUnderlyingDoFn
 - 
setup
 - 
processElement
@ProcessElement public void processElement(DoFn<KV<K, Iterable<KV<Instant, WindowedValue<KV<K, V>>>>>, OutputT>.ProcessContext c, BoundedWindow window)  - 
teardown
 - 
getOutputTypeDescriptor
Description copied from class:DoFnReturns aTypeDescriptorcapturing what is known statically about the output type of thisDoFninstance's most-derived class.In the normal case of a concrete
DoFnsubclass with no generic type parameters of its own (including anonymous inner classes), this will be a complete non-generic type, which is good for choosing a default outputCoder<O>for the outputPCollection<O>. 
 -