public interface BlockReceiver extends OsidReceiver
The block receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Block
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedBlocks(Id notificationId,
IdList blockIds)
The callback for notification of updated blocks.
|
void |
deletedBlocks(Id notificationId,
IdList blockIds)
The callback for notification of deleted blocks.
|
void |
newBlocks(Id notificationId,
IdList blockIds)
The callback for notifications of new blocks.
|
down, up
void newBlocks(Id notificationId, IdList blockIds)
notificationId
- the notification Id
blockIds
- the Ids
of the new Blocks
mandatory
- This method must be implemented. void changedBlocks(Id notificationId, IdList blockIds)
notificationId
- the notification Id
blockIds
- the Ids
of the updated Blocks
mandatory
- This method must be implemented.