org.mule.api.schedule
Interface SchedulerFactoryPostProcessor


public interface SchedulerFactoryPostProcessor

All the classes that implement this interface and are registered in the mule registry are going to be called after the creation of a Scheduler by the SchedulerFactory

The SchedulerFactoryPostProcessor can alter the instance of the scheduler, create notifications, etc. It is a way of hooking the creation of each Scheduler

The SchedulerFactoryPostProcessor can be:

  1. Registered by Spring bean or mule module extension via mule configuration (xml)
  2. Registered as a bootstrap extension
  3. Registered manually in the MuleRegistry.

Since:
3.5.0

Method Summary
 Scheduler process(Object job, Scheduler scheduler)
           Process based on a Scheduler instance after the SchedulerFactory creates it.
 

Method Detail

process

Scheduler process(Object job,
                  Scheduler scheduler)

Process based on a Scheduler instance after the SchedulerFactory creates it.

Parameters:
scheduler - The Scheduler that was created by the . It will never be Null.
job, - The job that the Scheduler is going to execute
Returns:
A Post processed instance of a Scheduler


Copyright © 2003-2014 MuleSoft, Inc.. All Rights Reserved.