Page History
...
Creating custom jobs
A custom generic job jobs should implement in both Java and .Net the IJob Blueriq interface. The execute(IExecutionContext context) method defined in the IJob interface is going to be executed when the job is executed. The job's scheduler and the job's parameters can be accessed from the execution context: context.getParameters() and context.getScheduler().
Example
UI Expand | ||
---|---|---|
| ||
The Blueriq scheduler when executes the job looks for an object with the scheduled job's type in the application context. As a consequence at execution a bean of the scheduled job type should be available in the application context.
|
UI Expand | ||
---|---|---|
| ||
//TODO update where the .NET job shoulbe be available
|
Scheduling, unscheduling and rescheduling custom jobs
Scheduling custom jobs
Unscheduling custom jobs
Rescheduling custom jobs
Overview
Content Tools