Interface QueueProcessor
- All Superinterfaces:
Browsable, Extensible, Identifiable, Operable, OsidObject, OsidProcessor, OsidRule
A QueueProcessor manages the operation of a Queue .
-
Method Summary
Modifier and TypeMethodDescriptiongetQueueProcessorRecord(Type queueProcessorRecordType) Gets the queue processor record corresponding to the givenQueueProcessorrecordType.booleanTests if the processing of the queue is automatic.booleanisFifo()Tests if this queue is first in first out.booleanTests if processed queue entries are removed.Methods inherited from interface Browsable
getProperties, getPropertiesByRecordTypeModifier and TypeMethodDescriptionGets a list of properties.getPropertiesByRecordType(Type recordType) Gets a list of properties corresponding to the specified record type.Methods inherited from interface Extensible
getRecordTypes, hasRecordTypeModifier and TypeMethodDescriptionGets the record types available in this object.booleanhasRecordType(Type recordType) Tests if this object supports the given recordType.Methods inherited from interface Identifiable
getId, isCurrentMethods inherited from interface Operable
isActive, isDisabled, isEnabled, isOperationalModifier and TypeMethodDescriptionbooleanisActive()Tests if this operable is active.booleanTests if this operable is administravely disabled.booleanTests if this operable is administravely enabled.booleanTests if thisOperableis operational.Methods inherited from interface OsidObject
getDescription, getDisplayName, getGenusType, isOfGenusTypeModifier and TypeMethodDescriptionGets the description associated with this instance of this OSID object.Gets the preferred display name associated with this instance of this OSID object appropriate for display to the user.Gets the genus type of this object.booleanisOfGenusType(Type genusType) Tests if this object is of the given genusType.Methods inherited from interface OsidRule
getConditionRecordTypes, getRule, getRuleId, hasRule
-
Method Details
-
isAutomatic
boolean isAutomatic()Tests if the processing of the queue is automatic.- Returns:
trueif the queue processing is automatic,falseif processed manually- Compliance:
mandatory- This method must be implemented.
-
isFifo
boolean isFifo()Tests if this queue is first in first out.- Returns:
trueif the queue is a fifo,falseotherwise- Compliance:
mandatory- This method must be implemented.
-
removesProcessedQueueEntries
boolean removesProcessedQueueEntries()Tests if processed queue entries are removed.- Returns:
trueif the processed entries are removed,falseif processed queue entries remain but marked ineffective- Compliance:
mandatory- This method must be implemented.
-
getQueueProcessorRecord
QueueProcessorRecord getQueueProcessorRecord(Type queueProcessorRecordType) throws OperationFailedException Gets the queue processor record corresponding to the givenQueueProcessorrecordType. This method ie used to retrieve an object implementing the requested record. ThequeueProcessorRecordTypemay be theTypereturned ingetRecordTypes()or any of its parents in aTypehierarchy wherehasRecordType(queueProcessorRecordType)is true.- Parameters:
queueProcessorRecordType- the type of queue processor record to retrieve- Returns:
- the queue processor record
- Throws:
NullArgumentException-queueProcessorRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(queueProcessorRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-