Package org.apache.sling.event.impl.jobs
Interface JobTopicTraverser.JobCallback
-
- Enclosing class:
- JobTopicTraverser
public static interface JobTopicTraverser.JobCallbackCallback called for each found job.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhandle(JobImpl job)Callback handle for a job.
-
-
-
Method Detail
-
handle
boolean handle(JobImpl job)
Callback handle for a job. If the callback signals to stop traversing, the current minute is still processed completely (to ensure correct ordering of jobs).- Parameters:
job- The job to handle- Returns:
trueIf processing should continue,falseotherwise.
-
-