public class PythonMap<InputT,OutputT> extends PTransform<PCollection<? extends InputT>,PCollection<OutputT>>
Map transforms..annotations, displayData, name, resourceHints| Modifier and Type | Method and Description | 
|---|---|
| PCollection<OutputT> | expand(PCollection<? extends InputT> input)Override this method to specify how this  PTransformshould be expanded on the givenInputT. | 
| static <InputT,OutputT> | viaFlatMapFn(java.lang.String pythonFunction,
            Coder<?> outputCoder) | 
| static <InputT,OutputT> | viaMapFn(java.lang.String pythonFunction,
        Coder<?> outputCoder) | 
| PythonMap<InputT,OutputT> | withExpansionService(java.lang.String expansionService) | 
| PythonMap<InputT,OutputT> | withExtraPackages(java.util.List<java.lang.String> extraPackages)Specifies any extra packages required by the Python function. | 
addAnnotation, compose, compose, getAdditionalInputs, getAnnotations, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, populateDisplayData, setDisplayData, setResourceHints, toString, validate, validatepublic static <InputT,OutputT> PythonMap<InputT,OutputT> viaMapFn(java.lang.String pythonFunction, Coder<?> outputCoder)
public static <InputT,OutputT> PythonMap<InputT,OutputT> viaFlatMapFn(java.lang.String pythonFunction, Coder<?> outputCoder)
public PythonMap<InputT,OutputT> withExpansionService(java.lang.String expansionService)
public PythonMap<InputT,OutputT> withExtraPackages(java.util.List<java.lang.String> extraPackages)
This should only be specified when using the default expansion service, i.e. when not using
 withExpansionService(String) to provide an expansion service.
 
The package can either be a PyPi package or the path to a locally available Python package.
extraPackages - a list of PyPi packages. May include the version.PythonMap with extra packages.public PCollection<OutputT> expand(PCollection<? extends InputT> input)
PTransformPTransform 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<? extends InputT>,PCollection<OutputT>>