public interface PoolProcessorReceiver extends OsidReceiver
The pool processor receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted pool processors.
| Modifier and Type | Method and Description |
|---|---|
void |
changedPoolProcessors(IdList poolProcessorIds)
The callback for notification of updated pool processors.
|
void |
deletedPoolProcessors(IdList poolProcessorIds)
The callback for notification of deleted pool processors.
|
void |
newPoolProcessors(IdList poolProcessorIds)
The callback for notifications of new pool processors.
|
down, upvoid newPoolProcessors(IdList poolProcessorIds)
poolProcessorIds - the Ids of the new
PoolProcessors mandatory - This method must be implemented. void changedPoolProcessors(IdList poolProcessorIds)
poolProcessorIds - the Ids of the updated
PoolProcessors mandatory - This method must be implemented. void deletedPoolProcessors(IdList poolProcessorIds)
poolProcessorIds - the Ids of the deleted
PoolProcessors mandatory - This method must be implemented.