OSID Logo
OSID Specifications
provisioning rules package
Version 3.1.0
Interfaceosid.provisioning.rules.QueueProcessor
Implementsosid.OsidProcessor
Used Byosid.provisioning.rules.QueueProcessorAdminSession
osid.provisioning.rules.QueueProcessorList
osid.provisioning.rules.QueueProcessorLookupSession
Description

A QueueProcessor manages the operation of a Queue.

MethodisAutomatic
Description

Tests if the processing of the queue is automatic.

Returnboolean true if the queue processing is automatic, false if processed manually
Compliancemandatory This method must be implemented.
MethodisFifo
Description

Tests if this queue is first in first out.

Returnboolean true if the queue is a fifo, false otherwise
Compliancemandatory This method must be implemented.
MethodremovesProcessedQueueEntries
Description

Tests if processed queue entries are removed.

Returnboolean true if the processed entries are removed, false if processed queue entries remain but marked ineffective
Compliancemandatory This method must be implemented.
MethodgetQueueProcessorRecord
Description

Gets the queue processor record corresponding to the given QueueProcessor record Type . This method ie used to retrieve an object implementing the requested record. The queueProcessorRecordType may be the Type returned in getRecordTypes() or any of its parents in a Type hierarchy where hasRecordType(queueProcessorRecordType) is true.

Parametersosid.type.TypequeueProcessorRecordType the type of queue processor record to retrieve
Returnosid.provisioning.rules.records.QueueProcessorRecord the queue processor record
ErrorsNULL_ARGUMENT queueProcessorRecordType is null
OPERATION_FAILED unable to complete request
UNSUPPORTED hasRecordType(queueProcessorRecordType) is false
Compliancemandatory This method must be implemented.