public static interface DirectPipelineRunner.EvaluationResults extends PipelineResult
DirectPipelineRunner, including reading and writing the
values of PCollections and PCollectionViews.PipelineResult.State| Modifier and Type | Method and Description |
|---|---|
<T> List<T> |
getPCollection(PCollection<T> pc)
Retrieves the value of the given PCollection.
|
<T> List<List<T>> |
getPCollectionList(PCollectionList<T> pcs)
Retrieves the values of each PCollection in the given
PCollectionList.
|
<T,WindowedT> |
getPCollectionView(PCollectionView<T> view)
Retrieves the values indicated by the given
PCollectionView. |
<T> List<com.google.cloud.dataflow.sdk.util.WindowedValue<T>> |
getPCollectionWindowedValues(PCollection<T> pc)
Retrieves the windowed value of the given PCollection.
|
getAggregatorValues, getState<T> List<T> getPCollection(PCollection<T> pc)
<T> List<com.google.cloud.dataflow.sdk.util.WindowedValue<T>> getPCollectionWindowedValues(PCollection<T> pc)
<T> List<List<T>> getPCollectionList(PCollectionList<T> pcs)
<T,WindowedT> Iterable<com.google.cloud.dataflow.sdk.util.WindowedValue<?>> getPCollectionView(PCollectionView<T> view)
PCollectionView.
Note that within the DoFn.Context
implementation a PCollectionView should convert from this representation to a
suitable side input value.