Class ParDo.MultiOutput<InputT,OutputT>

java.lang.Object
org.apache.beam.sdk.transforms.PTransform<PCollection<? extends InputT>,PCollectionTuple>
org.apache.beam.sdk.transforms.ParDo.MultiOutput<InputT,OutputT>
Type Parameters:
InputT - the type of the (main) input PCollection elements
OutputT - the type of the main output PCollection elements
All Implemented Interfaces:
Serializable, HasDisplayData
Enclosing class:
ParDo

public static class ParDo.MultiOutput<InputT,OutputT> extends PTransform<PCollection<? extends InputT>,PCollectionTuple>
A PTransform that, when applied to a PCollection<InputT>, invokes a user-specified DoFn<InputT, OutputT> on all its elements, which can emit elements to any of the PTransform's output PCollections, which are bundled into a result PCollectionTuple.
See Also: