@Deprecated public abstract class CoGroupFunction extends org.apache.flink.api.common.functions.AbstractRichFunction
CoGroupOperator.| Constructor and Description |
|---|
CoGroupFunction()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
abstract void |
coGroup(Iterator<org.apache.flink.types.Record> records1,
Iterator<org.apache.flink.types.Record> records2,
org.apache.flink.util.Collector<org.apache.flink.types.Record> out)
Deprecated.
This method must be implemented to provide a user implementation of a
matcher.
|
public abstract void coGroup(Iterator<org.apache.flink.types.Record> records1, Iterator<org.apache.flink.types.Record> records2, org.apache.flink.util.Collector<org.apache.flink.types.Record> out) throws Exception
records1 - The records from the first input which were paired with the key.records2 - The records from the second input which were paired with the key.out - A collector that collects all output pairs.Exception - Implementations may forward exceptions, which are caught by the runtime. When the
runtime catches an exception, it aborts the task and lets the fail-over logic
decide whether to retry the task execution.Copyright © 2014–2015 The Apache Software Foundation. All rights reserved.