public final class SolaceOutput extends java.lang.Object implements POutput
SolaceIO.Write transform's output return this type, containing the successful
publishes (getSuccessfulPublish()). To access failed records, configure the connector
with SolaceIO.Write#withErrorHandler(ErrorHandler).
The streaming writer with DIRECT messages does not return anything, and the output PCollection will be equal to null.
| 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. |
Pipeline |
getPipeline()
|
@Nullable PCollection<Solace.PublishResult> |
getSuccessfulPublish() |
static SolaceOutput |
in(Pipeline pipeline,
@Nullable PCollection<Solace.PublishResult> successfulPublish) |
public @Nullable PCollection<Solace.PublishResult> getSuccessfulPublish()
public static SolaceOutput in(Pipeline pipeline, @Nullable PCollection<Solace.PublishResult> successfulPublish)
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 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