Enum TransformRowTreatment
Used by some dataflow transform workers to specify how a row should be handled, e.g. passed to the downstream worker, or discarded.
Namespace: actionETL
Assembly: actionETL.dll
Syntax
public enum TransformRowTreatment
Fields
| Name | Description |
|---|---|
| Discard | Discard the row without raising any error. |
| DiscardAllRemaining | Discard all remaining rows without raising any error. |
| Reject | Reject the row to the error output. The worker will not error unless the error thresholds of the port have been exceeded. |
| RejectAndErrorWorker | Reject the row to the error output, and error the worker. |
| RejectAndFatalWorker | Reject the row to the error output, and fatally fail the worker. |
| Send | Send the row to the downstream worker. |