MamdaAuctionHandler is an interface for applications that want to have an easy way to handle Auction updates. The interface defines callback methods for different types of Auction-related events:
Name | |
---|---|
void | onAuctionRecap(MamdaSubscription subscription, MamdaAuctionListener listener, MamaMsg msg, MamdaAuctionRecap recap) Method invoked when the current last-Auction information for the security is available. The reason for the invocation may be any of the following: |
void | onAuctionUpdate(MamdaSubscription subscription, MamdaAuctionListener listener, MamaMsg msg, MamdaAuctionUpdate update, MamdaAuctionRecap recap) Method invoked when a Auction update arrives. |
void onAuctionRecap(
MamdaSubscription subscription,
MamdaAuctionListener listener,
MamaMsg msg,
MamdaAuctionRecap recap
)
Method invoked when the current last-Auction information for the security is available. The reason for the invocation may be any of the following:
Parameters:
recap Access to the current value of all fields.
void onAuctionUpdate(
MamdaSubscription subscription,
MamdaAuctionListener listener,
MamaMsg msg,
MamdaAuctionUpdate update,
MamdaAuctionRecap recap
)
Method invoked when a Auction update arrives.
Parameters:
Updated on 2023-03-31 at 15:30:12 +0100