Class MapOperator<InputType,OutputType>

java.lang.Object
org.apache.wayang.core.plan.wayangplan.OperatorBase
org.apache.wayang.core.plan.wayangplan.UnaryToUnaryOperator<InputType,OutputType>
org.apache.wayang.basic.operators.MapOperator<InputType,OutputType>
All Implemented Interfaces:
Serializable, ActualOperator, ElementaryOperator, Operator
Direct Known Subclasses:
FlinkMapOperator, JavaMapOperator, JdbcProjectionOperator, SparkMapOperator

public class MapOperator<InputType,OutputType> extends UnaryToUnaryOperator<InputType,OutputType>
A map operator represents semantics as they are known from frameworks, such as Spark and Flink. It pulls each available element from the input slot, applies a function to it, and pushes that element to the output slot.
See Also: