Reputation: 31
I am using Quartz for scheduling parallel tasks, How can I get job running time in Quartz?
Upvotes: 0
Views: 386
Reputation: 2111
JobExecutionContext expose a some useful methods:
Note: To know "how long it WILL takes to run one job" you have to implement on your own doing some simple math to get the % of completion. Quartz itself doesn't have such a feature.
Upvotes: 1