ElemT
- The type of the elements of the input PCollectionViewT
- The type associated with the PCollectionView
used as a side inputpublic static class ApexRunner.CreateApexPCollectionView<ElemT,ViewT> extends PTransform<PCollection<java.util.List<ElemT>>,PCollectionView<ViewT>>
PCollectionView
.
For internal use only by runner implementors.
name
Modifier and Type | Method and Description |
---|---|
PCollectionView<ViewT> |
expand(PCollection<java.util.List<ElemT>> input)
Applies this
PTransform on the given InputT , and returns its
Output . |
static <ElemT,ViewT> |
of(PCollectionView<ViewT> view) |
getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, populateDisplayData, toString, validate
public static <ElemT,ViewT> ApexRunner.CreateApexPCollectionView<ElemT,ViewT> of(PCollectionView<ViewT> view)
public PCollectionView<ViewT> expand(PCollection<java.util.List<ElemT>> input)
PTransform
PTransform
on the given InputT
, and returns its
Output
.
Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
expand
in class PTransform<PCollection<java.util.List<ElemT>>,PCollectionView<ViewT>>