public interface QueueNotificationSession extends OsidSession
This session defines methods to receive notifications on adds/changes
to Queue
objects in this FrontOffice.
This
also includes existing queues that may appear or disappear due to changes
in the FrontOffice
hierarchy, This session is intended for
consumers needing to synchronize their state with this service without the
use of polling. Notifications are cancelled when this session is closed.
The two views defined in this session correspond to the views in the
QueueLookupSession.
Modifier and Type | Method and Description |
---|---|
boolean |
canRegisterForQueueNotifications()
Tests if this user can register for
Queue
notifications. |
FrontOffice |
getFrontOffice()
Gets the
FrontOffice associated with this session. |
Id |
getFrontOfficeId()
Gets the
FrontOffice Id associated with
this session. |
void |
registerForChangedQueue(Id queueId)
Registers for notification of an updated queue.
|
void |
registerForChangedQueues()
Registers for notification of updated queues.
|
void |
registerForDeletedQueue(Id queueId)
Registers for notification of a deleted queue.
|
void |
registerForDeletedQueues()
Registers for notification of deleted queues.
|
void |
registerForNewQueues()
Register for notifications of new queues.
|
void |
useFederatedFrontOfficeView()
Federates the view for methods in this session.
|
void |
useIsolatedFrontOfficeView()
Isolates the view for methods in this session.
|
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactions
close
Id getFrontOfficeId()
FrontOffice
Id
associated with
this session. FrontOffice Id
associated with this sessionmandatory
- This method must be implemented. FrontOffice getFrontOffice() throws OperationFailedException, PermissionDeniedException
FrontOffice
associated with this session.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. boolean canRegisterForQueueNotifications()
Queue
notifications. A return of true does not guarantee successful
authorization. A return of false indicates that it is known all
methods in this session will result in a PERMISSION_DENIED.
This is intended as a hint to an application that may opt not
to offer notification operations. false
if notification methods are not
authorized, true
otherwisemandatory
- This method must be implemented. void useFederatedFrontOfficeView()
mandatory
- This method is must be implemented. void useIsolatedFrontOfficeView()
mandatory
- This method is must be implemented. void registerForNewQueues() throws OperationFailedException, PermissionDeniedException
QueueReceiver.newQueues()
is invoked when a new Queue
appears in this front office.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForChangedQueues() throws OperationFailedException, PermissionDeniedException
QueueReceiver.changedQueues()
is invoked when a queue in this
front office is changed.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForChangedQueue(Id queueId) throws OperationFailedException, PermissionDeniedException
QueueReceiver.changedQueues()
is invoked when the specified
queue in this front office is changed.queueId
- the Id
of the Queue
to
monitorNullArgumentException
- queueId
is
null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForDeletedQueues() throws OperationFailedException, PermissionDeniedException
QueueReceiver.deletedQueues()
is invoked when a queue is
deleted or removed from this front office.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForDeletedQueue(Id queueId) throws OperationFailedException, PermissionDeniedException
QueueReceiver.deletedQueues()
is invoked when the specified
queue is deleted or removed from this front office.queueId
- the Id
of the Queue
to
monitorNullArgumentException
- queueId
is
null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented.