Class JobHandlingDistributionQueue
java.lang.Object
org.apache.sling.distribution.queue.impl.jobhandling.JobHandlingDistributionQueue
- All Implemented Interfaces:
DistributionQueue
a
DistributionQueue based on Sling Job Handling facilities-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionadd(@NotNull DistributionQueueItem item) add a distribution item to this queue@NotNull Iterable<DistributionQueueEntry> clear(int limit) Clear a range of entries from the queue.@NotNull List<DistributionQueueEntry> getEntries(int skip, int limit) get all the entries in the queuegets an entry from the queue by specifying its idgetHead()get the first entry (in a FIFO strategy, the next to be processed) from the queue@NotNull StringgetName()get this queue name@NotNull DistributionQueueStatusget the status of the queue@NotNull DistributionQueueTypegetType()get the type of this queuebooleanhasCapability(@NotNull String capability) remove an entry from the queue by specifying its id@NotNull Iterable<DistributionQueueEntry> Remove a set entries from the queue by specifying their identifiers.
-
Field Details
-
DISTRIBUTION_QUEUE_TOPIC
- See Also:
-
-
Method Details
-
getName
Description copied from interface:DistributionQueueget this queue name- Specified by:
getNamein interfaceDistributionQueue- Returns:
- the queue name
-
add
Description copied from interface:DistributionQueueadd a distribution item to this queue- Specified by:
addin interfaceDistributionQueue- Parameters:
item- a distribution item, typically representing aDistributionPackageto distribute- Returns:
- the queue entry created for this item or
nollif none is created
-
getHead
Description copied from interface:DistributionQueueget the first entry (in a FIFO strategy, the next to be processed) from the queue- Specified by:
getHeadin interfaceDistributionQueue- Returns:
- the first entry into the queue or
nullif the queue is empty
-
getEntries
Description copied from interface:DistributionQueueget all the entries in the queue- Specified by:
getEntriesin interfaceDistributionQueue- Parameters:
skip- the number of entries to skiplimit- the maximum number of entries to return. use -1 to return all entries.- Returns:
- a
IterableofDistributionQueueEntryentries
-
getEntry
Description copied from interface:DistributionQueuegets an entry from the queue by specifying its id- Specified by:
getEntryin interfaceDistributionQueue- Parameters:
id- the entry identifier- Returns:
- the entry, or
nullif the entry with the given id doesn't exist
-
remove
@NotNull public @NotNull Iterable<DistributionQueueEntry> remove(@NotNull @NotNull Set<String> entryIds) Description copied from interface:DistributionQueueRemove a set entries from the queue by specifying their identifiers.- Specified by:
removein interfaceDistributionQueue- Parameters:
entryIds- The identifiers of the entries to be removed- Returns:
- an iterable over the removed entries
-
remove
Description copied from interface:DistributionQueueremove an entry from the queue by specifying its id- Specified by:
removein interfaceDistributionQueue- Parameters:
id- the entry identifier- Returns:
- the removed entry, or
nullif the entry with the given id doesn't exist
-
getStatus
Description copied from interface:DistributionQueueget the status of the queue- Specified by:
getStatusin interfaceDistributionQueue- Returns:
- the queue status
-
getType
Description copied from interface:DistributionQueueget the type of this queue- Specified by:
getTypein interfaceDistributionQueue- Returns:
- the type
-
clear
Description copied from interface:DistributionQueueClear a range of entries from the queue. The range starts from the head entry, includes the specified #limit number of entries.- Specified by:
clearin interfaceDistributionQueue- Parameters:
limit- The maximum number of entries to remove. All entries are removed when the limit is-1.- Returns:
- an iterable over the removed entries
-
hasCapability
- Specified by:
hasCapabilityin interfaceDistributionQueue- Returns:
trueif the queue supports the capability ;falseotherwise
-