Quartz.Net and passing data between chaining jobs
问题 I've got to implement a simple workflow. Some job A have to run at specified time (cron trigger). This job searches for unprocessed data (let's say some IThingToDo[]) and process it. Job B has to be performed just after job A finished and the list of processed data (IThingToDo[]) should be passed to it. Job A stores data like this: context.Put("Things", things); Then I use IJobListener to know when job A finished, get the "Things" array and create a trigger for job B: Trigger trigger = new