Package org.apache.beam.sdk.transforms
Interface DoFn.MultiOutputReceiver
public static interface DoFn.MultiOutputReceiver
Receives tagged output for a multi-output function.
- 
Method Summary
Modifier and TypeMethodDescription<T> DoFn.OutputReceiver<T> Returns anDoFn.OutputReceiverfor the given tag.<T> DoFn.OutputReceiver<Row> getRowReceiver(TupleTag<T> tag) Returns aDoFn.OutputReceiverfor publishingRowobjects to the given tag. 
- 
Method Details
- 
get
Returns anDoFn.OutputReceiverfor the given tag. * - 
getRowReceiver
Returns aDoFn.OutputReceiverfor publishingRowobjects to the given tag.The
PCollectionrepresenting this tag must have a schema registered in order to call this function. 
 -