ElemT
- The type of the elements of the input PCollectionViewT
- The type associated with the PCollectionView
used as a side input@Internal public static class View.CreatePCollectionView<ElemT,ViewT> extends PTransform<PCollection<ElemT>,PCollectionView<ViewT>>
Creates a primitive PCollectionView
.
name
Modifier and Type | Method and Description |
---|---|
PCollectionView<ViewT> |
expand(PCollection<ElemT> input)
Applies this
PTransform on the given InputT , and returns its
Output . |
PCollectionView<ViewT> |
getView()
Deprecated.
|
static <ElemT,ViewT> |
of(PCollectionView<ViewT> view) |
getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, populateDisplayData, toString, validate
public static <ElemT,ViewT> View.CreatePCollectionView<ElemT,ViewT> of(PCollectionView<ViewT> view)
@Deprecated public PCollectionView<ViewT> getView()
PCollectionView
that is returned by applying this PTransform
.
This should not be used to obtain the output of any given application of this
PTransform
. That should be obtained by inspecting the TransformHierarchy.Node
that contains this View.CreatePCollectionView
, as this view may have been replaced within
pipeline surgery.
public PCollectionView<ViewT> expand(PCollection<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<ElemT>,PCollectionView<ViewT>>