@Internal public static class View.AsList<T> extends PTransform<PCollection<T>,PCollectionView<java.util.List<T>>>
Public only so a PipelineRunner
may override its behavior.
See View.asList()
.
annotations, displayData, name, resourceHints
Modifier and Type | Method and Description |
---|---|
PCollectionView<java.util.List<T>> |
expand(PCollection<T> input)
Override this method to specify how this
PTransform should be expanded on the given
InputT . |
View.AsList<T> |
inMemory()
Returns a PCollection view like this one, but whose resulting list will be entirely cached in
memory.
|
View.AsList<T> |
inMemory(boolean inMemory)
Returns a PCollection view like this one, but whose resulting list will be entirely cached in
memory according to the input parameter.
|
View.AsList<T> |
withRandomAccess()
Returns a PCollection view like this one, but whose resulting list will have RandomAccess
(aka fast indexing).
|
View.AsList<T> |
withRandomAccess(boolean withRandomAccess)
Returns a PCollection view like this one, but whose resulting list will have RandomAccess
(aka fast indexing) according to the input parameter.
|
addAnnotation, compose, compose, getAdditionalInputs, getAnnotations, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, populateDisplayData, setDisplayData, setResourceHints, toString, validate, validate
public View.AsList<T> withRandomAccess()
A veiw with random access will be much more expensive to compute and iterate over, but will have a faster get() method.
public View.AsList<T> withRandomAccess(boolean withRandomAccess)
A veiw with random access will be much more expensive to compute and iterate over, but will have a faster get() method.
public View.AsList<T> inMemory()
This may use more memory in exchange for the fastest access when used repeatedly.
public View.AsList<T> inMemory(boolean inMemory)
This may use more memory in exchange for the fastest access when used repeatedly.
public PCollectionView<java.util.List<T>> expand(PCollection<T> input)
PTransform
PTransform
should be expanded on the given
InputT
.
NOTE: This method should not be called directly. Instead apply the PTransform
should
be applied to the InputT
using the apply
method.
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<T>,PCollectionView<java.util.List<T>>>