Wombat::MamdaAuctionHandler

Wombat::MamdaAuctionHandler

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:

Public Functions

  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.

Public Functions Documentation

function onAuctionRecap

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:

  • subscription The MamdaSubscription reference.
  • listener The MamdaAuctionListener reference.
  • msg The MamaMsg that triggered this invocation.
  • recap Access to the current value of all fields.

  • Initial image.
  • Recap update (e.g., after server fault tolerant event or data quality event.)
  • After stale status removed.

function onAuctionUpdate

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