@ConsumerType public interface JobConsumer
If the job consumer needs more features like providing progress information or adding
more information of the processing, JobExecutor
should be implemented instead.
A job consumer registers itself with the PROPERTY_TOPICS
service registration
property. The value of this property defines which topics a consumer is able to process.
Each string value of this property is either
For example, the value org/apache/sling/jobs/*
matches the topics
org/apache/sling/jobs/a
and org/apache/sling/jobs/b
but neither
org/apache/sling/jobs
nor org/apache/sling/jobs/subcategory/a
. A value of
org/apache/sling/jobs/**
matches the same topics but also all sub topics
like org/apache/sling/jobs/subcategory/a
or org/apache/sling/jobs/subcategory/a/c/d
.
If there is more than one job consumer or executor registered for a job topic, the selection is as follows:
If the consumer decides to process the job asynchronously, the processing must finish within the current lifetime of the job consumer. If the consumer (or the instance of the consumer) dies, the job processing will mark this processing as failed and reschedule.
Modifier and Type | Interface and Description |
---|---|
static interface |
JobConsumer.AsyncHandler
If the consumer decides to process the job asynchronously, this handler
interface can be used to notify finished processing.
|
static class |
JobConsumer.JobResult
The result of the job processing.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
PROPERTY_JOB_ASYNC_HANDLER
Job property containing an asynchronous handler.
|
static java.lang.String |
PROPERTY_TOPICS
Service registration property defining the jobs this consumer is able to process.
|
Modifier and Type | Method and Description |
---|---|
JobConsumer.JobResult |
process(Job job)
Execute the job.
|
static final java.lang.String PROPERTY_JOB_ASYNC_HANDLER
static final java.lang.String PROPERTY_TOPICS
JobConsumer.JobResult process(Job job)
If the job has been processed successfully, JobConsumer.JobResult.OK
should be returned.
If the job has not been processed completely, but might be rescheduled JobConsumer.JobResult.FAILED
should be returned.
If the job processing failed and should not be rescheduled, JobConsumer.JobResult.CANCEL
should
be returned.
If the consumer decides to process the job asynchronously it should return JobConsumer.JobResult.ASYNC
and notify the job manager by using the JobConsumer.AsyncHandler
interface.
If the processing fails with throwing an exception/throwable, the process will not be rescheduled
and treated like the method would have returned JobConsumer.JobResult.CANCEL
.
job
- The jobCopyright © 2010 - 2020 Adobe. All Rights Reserved