You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 15, 2022. It is now read-only.
add support for loading *Handler classes into the Awilix container
Awiilix container is allowed to have a single instance of each type of handler
enable custom batch job types/handlers from plugins by identifying service using BatchJob type
create a common interface that batch job handlers implement:
add support for loading *Handler classes into the Awilix container
Awiilix container is allowed to have a single instance of each type of handler
enable custom batch job types/handlers from plugins by identifying service using BatchJob type
create a common interface that batch job handlers implement:
interface {
/*
* Used in the API controller to verify that the `context` param is valid
*/
validateContext()
/*
* Method does the actual processing of the job. Should report back on the progress of the operation.
*/
processJob()
/*
* Method performs the completion of the job. Will not be run if `processJob` has already moved the BatchJob to a `complete` status.
*/
completeJob()
}
The text was updated successfully, but these errors were encountered: