public class SpannerWriteResult extends java.lang.Object implements POutput
SpannerIO.write() transform.
 Use getFailedMutations() to access a PCollection of MutationGroups that
 failed to write.
 
The PCollection returned by getOutput() can be used in batch pipelines as a
 completion signal to Wait.OnSignal to indicate when
 all input has been written. Note that in streaming pipelines, this signal will never be triggered
 as the input is unbounded and this PCollection is using the GlobalWindow.
| Constructor and Description | 
|---|
| SpannerWriteResult(Pipeline pipeline,
                  PCollection<java.lang.Void> output,
                  PCollection<MutationGroup> failedMutations,
                  TupleTag<MutationGroup> failedMutationsTag) | 
| Modifier and Type | Method and Description | 
|---|---|
| java.util.Map<TupleTag<?>,PValue> | expand() | 
| void | finishSpecifyingOutput(java.lang.String transformName,
                      PInput input,
                      PTransform<?,?> transform)As part of applying the producing  PTransform, finalizes this output to make it ready
 for being used as an input and for running. | 
| PCollection<MutationGroup> | getFailedMutations() | 
| PCollection<java.lang.Void> | getOutput() | 
| Pipeline | getPipeline() | 
public SpannerWriteResult(Pipeline pipeline, PCollection<java.lang.Void> output, PCollection<MutationGroup> failedMutations, TupleTag<MutationGroup> failedMutationsTag)
public Pipeline getPipeline()
POutputgetPipeline in interface POutputpublic java.util.Map<TupleTag<?>,PValue> expand()
POutputPOutput into a list of its component output PValues.
 PValue expands to itself.
   PValues (such as PCollectionTuple or PCollectionList) expands to its component PValue PValues.
 Not intended to be invoked directly by user code.
public PCollection<MutationGroup> getFailedMutations()
public PCollection<java.lang.Void> getOutput()
public void finishSpecifyingOutput(java.lang.String transformName,
                                   PInput input,
                                   PTransform<?,?> transform)
POutputPTransform, finalizes this output to make it ready
 for being used as an input and for running.
 This includes ensuring that all PCollections have Coders specified or defaulted.
 
Automatically invoked whenever this POutput is output, after POutput.finishSpecifyingOutput(String, PInput, PTransform) has been called on each component
 PValue returned by POutput.expand().
finishSpecifyingOutput in interface POutput