Package org.apache.sling.event.impl.jobs
Interface JobTopicTraverser.ResourceCallback
-
- Enclosing class:
- JobTopicTraverser
public static interface JobTopicTraverser.ResourceCallbackCallback called for each found resource.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhandle(org.apache.sling.api.resource.Resource rsrc)Callback handle for a resource.
-
-
-
Method Detail
-
handle
boolean handle(org.apache.sling.api.resource.Resource rsrc)
Callback handle for a resource. The callback is called in sorted order on a minute base, all resources within a minute are not necessarily called in correct time order! If the callback signals to stop traversing, the traversal is stopped immediately.- Parameters:
rsrc- The resource to handle- Returns:
trueIf processing should continue,falseotherwise.
-
-