Void destination
The Void destination can be used to discard records
On this page
Core package
The VoidDestination
is part of the ETLBox core package - you don’t need to reference any additional package to use this destination.
Usage
The VoidDestination is best used when using predicate in your flow. All records in you flow need to be send to some kind of destination, otherwise your data flow will never finish. To discare records, simple send data into the VoidDestination.
Implict use
The example above can be simplified to use it without an explicit declaration of the VoidDestination.
You can omit the declaration of the VoidDestination
and change the linking of the flows using the third method parameter of the LinkTo()
method:
Note