public interface PoolReceiver extends OsidReceiver
The pool receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Pool
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedPools(IdList poolIds)
The callback for notification of updated pools.
|
void |
deletedPools(IdList poolIds)
The callback for notification of deleted pools.
|
void |
newPools(IdList poolIds)
The callback for notifications of new pools.
|
down, upvoid newPools(IdList poolIds)
poolIds - the Ids of the new Pools mandatory - This method must be implemented. void changedPools(IdList poolIds)
poolIds - the Ids of the updated Pools
mandatory - This method must be implemented. void deletedPools(IdList poolIds)
poolIds - the Ids of the deleted Pools
mandatory - This method must be implemented.