Class KeyedSortPartitionOperator<INPUT,​KEY>

    • Field Detail

      • inputType

        protected final org.apache.flink.api.common.typeinfo.TypeInformation<INPUT> inputType
        The type information of input records.
      • sortFieldSelector

        protected final org.apache.flink.api.java.functions.KeySelector<INPUT,​?> sortFieldSelector
        The selector to create the sort key for records, which will be null if it's not used.
    • Constructor Detail

      • KeyedSortPartitionOperator

        public KeyedSortPartitionOperator​(org.apache.flink.api.common.typeinfo.TypeInformation<INPUT> inputType,
                                          int positionSortField,
                                          org.apache.flink.api.common.operators.Order sortOrder)
      • KeyedSortPartitionOperator

        public KeyedSortPartitionOperator​(org.apache.flink.api.common.typeinfo.TypeInformation<INPUT> inputType,
                                          String stringSortField,
                                          org.apache.flink.api.common.operators.Order sortOrder)
      • KeyedSortPartitionOperator

        public KeyedSortPartitionOperator​(org.apache.flink.api.common.typeinfo.TypeInformation<INPUT> inputType,
                                          org.apache.flink.api.java.functions.KeySelector<INPUT,​K> sortFieldSelector,
                                          org.apache.flink.api.common.operators.Order sortOrder)