Name | |
---|---|
void | onBookAtomicLevelEntryRecap(MamdaSubscription subscription, MamdaBookAtomicListener listener, MamaMsg msg, MamdaBookAtomicLevelEntry levelEntry) |
void | onBookAtomicLevelEntryDelta(MamdaSubscription subscription, MamdaBookAtomicListener listener, MamaMsg msg, MamdaBookAtomicLevelEntry levelEntry) |
class com::wombat::mamda::orderbook::MamdaBookAtomicLevelEntryHandler;
MamdaBookAtomicLevelEntryHandler is an interface for applications that want to have an easy way to handle order book Price Level and Entry updates. The interface defines callback methods for different types of orderBook-related events: order book recaps and updates.
void onBookAtomicLevelEntryRecap(
MamdaSubscription subscription,
MamdaBookAtomicListener listener,
MamaMsg msg,
MamdaBookAtomicLevelEntry levelEntry
)
Parameters:
Method invoked when a full refresh of the order book for the security is available. The reason for the invocation may be any of the following:
void onBookAtomicLevelEntryDelta(
MamdaSubscription subscription,
MamdaBookAtomicListener listener,
MamaMsg msg,
MamdaBookAtomicLevelEntry levelEntry
)
Parameters:
Method invoked when an order book delta is reported.
Updated on 2023-03-31 at 15:30:38 +0100