I have a use case that I need to handle some tasks(mostly DB writing) once a job is completed,
pushing the DB writing to the jobs leads too many DB connection so I'd like to have the main application to handle that part.
I'm wondering if sidequest has a mechanism to callback once the job has a status transition so the main app could have a chance to deal with something is not fit in the job run function.
thanks.