Applications
Applications are smart contracts with logic to be executed by the JobManager
contract. An application contract must implement the IApplication
interface:
The functions onExecuteJob
, onCreatedJob
and onDeletedJob
are callback functions which the JobManager
contract will call upon execution, creation and deletion of a job respectively.
Applications can be implemented by anyone and can contain any logic such as calling external contracts. This makes it possible to execute any logic through EES jobs.
Last updated