Class Deduplicate.WithRepresentativeValues<T,IdT>

java.lang.Object
org.apache.beam.sdk.transforms.PTransform<PCollection<T>,PCollection<T>>
org.apache.beam.sdk.transforms.Deduplicate.WithRepresentativeValues<T,IdT>
Type Parameters:
T - the type of input and output element
IdT - the type of representative values used to dedup
All Implemented Interfaces:
Serializable, HasDisplayData
Enclosing class:
Deduplicate

public static final class Deduplicate.WithRepresentativeValues<T,IdT> extends PTransform<PCollection<T>,PCollection<T>>
A PTransform that uses a SerializableFunction to obtain a representative value for each input element used for deduplication.

Construct via Deduplicate.withRepresentativeValueFn(org.apache.beam.sdk.transforms.SerializableFunction<T, IdT>).

See Also: