public interface BidReceiver extends OsidReceiver
The bid receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Bid
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedBids(Id notificationId,
IdList bidIds)
The callback for notification of updated bids.
|
void |
deletedBids(Id notificationId,
IdList bidIds)
The callback for notification of deleted bids.
|
void |
newBids(Id notificationId,
IdList bidIds)
The callback for notifications of new bids.
|
down, up
void newBids(Id notificationId, IdList bidIds)
notificationId
- the notification Id
bidIds
- the Id
of the new Bids
mandatory
- This method must be implemented. void changedBids(Id notificationId, IdList bidIds)
notificationId
- the notification Id
bidIds
- the Id
of the updated Bids
mandatory
- This method must be implemented.