void |
Function.ack(Row row) |
Ack a row.
|
void |
FunctionTableCollector.ack(Row row) |
You must acknowledge each row.
|
abstract void |
Function.execute(Row row) |
Implement this method to prepare yourself.
|
void |
Function.fail(Row row) |
Fail a row
|
void |
FunctionTableCollector.fail(Row row) |
You can fail a row This will trigger the notification to the
concerned source.
|
void |
Function.insert(Out out,
Row anchor,
List<Object> columnValues) |
Insert a new row into an output.
|
void |
Function.insert(List<Out> outs,
Row anchor,
List<Object> columnValues) |
Dispatch rows towards several destinations.
|
void |
FunctionTableCollector.insert(Out out,
Row anchor,
List<Object> columnValues) |
|
void |
FunctionTableCollector.insert(List<Out> outs,
Row anchor,
List<Object> columnValues) |
Insert new columns in several output destination tables.
|