public static class View.AsSingleton<T> extends PTransform<PCollection<T>,PCollectionView<T>>
PipelineRunner may
override its behavior.
See View.asSingleton().
name| Modifier and Type | Method and Description |
|---|---|
PCollectionView<T> |
apply(PCollection<T> input)
Applies this
PTransform on the given InputT, and returns its
Output. |
T |
defaultValue()
Returns the default value of this transform, or null if there isn't one.
|
boolean |
hasDefaultValue()
Returns whether this transform has a default value.
|
void |
validate(PCollection<T> input)
Called before invoking apply (which may be intercepted by the runner) to
verify this transform is fully specified and applicable to the specified
input.
|
View.AsSingleton<T> |
withDefaultValue(T defaultValue)
Default value to return for windows with no value in them.
|
getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, populateDisplayData, toStringpublic boolean hasDefaultValue()
public T defaultValue()
public View.AsSingleton<T> withDefaultValue(T defaultValue)
public void validate(PCollection<T> input)
PTransformBy default, does nothing.
validate in class PTransform<PCollection<T>,PCollectionView<T>>public PCollectionView<T> apply(PCollection<T> input)
PTransformPTransform 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).
apply in class PTransform<PCollection<T>,PCollectionView<T>>