public interface OrderReceiver extends OsidReceiver
The order receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted orders.
| Modifier and Type | Method and Description |
|---|---|
void |
changedOrders(IdList orderIds)
The callback for notifications of updated orders including new or
deleted items.
|
void |
deletedOrders(IdList orderIds)
the callback for notification of deleted orders.
|
void |
newOrders(IdList orderIds)
The callback for notifications of new orders.
|
down, upvoid newOrders(IdList orderIds)
orderIds - the Ids of the new ordersmandatory - This method must be implemented. void changedOrders(IdList orderIds)
orderIds - the Ids of the updated ordersmandatory - This method must be implemented. void deletedOrders(IdList orderIds)
orderIds - the Ids of the deleted ordersmandatory - This method must be implemented.