Handlers¶
Denodo Scheduler allows new custom handlers to be created.
To create a new handler the interface
com.denodo.scheduler.api.handler.Handler
needs to be implemented.
This interface has the following methods:
init
. Initializes the handler.execute
. Method invoked by Scheduler once the extraction and exporting of all the tuples of a job have finished.
For more information please refer to the Denodo Scheduler Javadoc
documentation or the example for creating a handler in
DENODO_HOME/samples/scheduler/handler-api
.