Interface ApplyPartitionFunction<OUT>
-
- All Superinterfaces:
org.apache.flink.api.common.functions.Function,Serializable
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface @Experimental public interface ApplyPartitionFunction<OUT> extends org.apache.flink.api.common.functions.Function
A function to be applied to all partitions .
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapply(Collector<OUT> collector, PartitionedContext<OUT> ctx)The actual method to be applied to each partition.
-