public static class IntraBundleParallelization.Unbound
extends java.lang.Object
IntraBundleParallelization transform, with unbound input/output types.
Before being applied, of(com.google.cloud.dataflow.sdk.transforms.DoFn<I, O>) must be
invoked to specify the DoFn to invoke, which will also
bind the input/output types of this PTransform.
| Modifier and Type | Method and Description |
|---|---|
<I,O> IntraBundleParallelization.Bound<I,O> |
of(DoFn<I,O> doFn)
|
IntraBundleParallelization.Unbound |
withMaxParallelism(int maxParallelism)
Returns a new
IntraBundleParallelization PTransform like this one
with the specified maximum concurrency level. |
public IntraBundleParallelization.Unbound withMaxParallelism(int maxParallelism)
IntraBundleParallelization PTransform like this one
with the specified maximum concurrency level.public <I,O> IntraBundleParallelization.Bound<I,O> of(DoFn<I,O> doFn)
IntraBundleParallelization PTransform like this one
with the specified DoFn.
Note that the specified doFn needs to be thread safe.