Interface AuctionProcessorReceiver
- All Superinterfaces:
OsidReceiver
The auction processor receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted auction processors.
Like all OsidReceivers, notifications are delivered to
AuctionProcessorReceiver serially and a receiver method is not invoked
again until any previous invocation has returned.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedAuctionProcessors(Id notificationId, IdList auctionProcessorIds) The callback for notification of updated auction processors.voiddeletedAuctionProcessors(Id notificationId, IdList auctionProcessorIds) The callback for notification of deleted auction processors.voidnewAuctionProcessors(Id notificationId, IdList auctionProcessorIds) The callback for notifications of new auction processors.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newAuctionProcessors
-
changedAuctionProcessors
The callback for notification of updated auction processors.- Parameters:
notificationId- the notificationIdauctionProcessorIds- theIdof the updatedAuctionProcessors- Compliance:
mandatory- This method must be implemented.
-
deletedAuctionProcessors
The callback for notification of deleted auction processors.- Parameters:
notificationId- the notificationIdauctionProcessorIds- theIdof the deletedAuctionProcessors- Compliance:
mandatory- This method must be implemented.
-