Runs just after the app initializes. This is useful for things like the cron or websocket service, which creates new work that might rely on other services already being operational.
In most cases you probably want to implement OnAppInit. Most relevant things like eg. The data source service are already operational there, as they implement the BeforeAppInit interface.
Runs just before the app shuts down. This is useful for things like the cron or websocket service, which creates new work that might rely on other services still being operational.
In most cases you probably want to implement OnAppShutdown. Most relevant things like eg. The data source service are still operational there, as they implement the AfterAppShutdown interface.
Changes the cron expression of the cron job with the given name.
Disables the cron job with the given name.
Enables the cron job with the given name.
Updates the cron job with the given name.
Default cron service implementation of Zibri.