Class UnionAllOperator<Type>

All Implemented Interfaces:
Serializable, ActualOperator, ElementaryOperator, Operator
Direct Known Subclasses:
FlinkUnionAllOperator, JavaUnionAllOperator, SparkUnionAllOperator

public class UnionAllOperator<Type> extends BinaryToUnaryOperator<Type,Type,Type>
This Operator creates the union (bag semantics) of two .
See Also:
  • Constructor Details

    • UnionAllOperator

      public UnionAllOperator(DataSetType<Type> type)
      Creates a new instance.
      Parameters:
      type - the type of the datasets to be coalesced
    • UnionAllOperator

      public UnionAllOperator(Class<Type> typeClass)
      Creates a new instance.
      Parameters:
      typeClass - the type of the datasets to be coalesced
    • UnionAllOperator

      public UnionAllOperator(UnionAllOperator<Type> that)
      Copies an instance (exclusive of broadcasts).
      Parameters:
      that - that should be copied
  • Method Details