Package com.wombat.mamda
Interface MamdaFundamentalHandler
-
public interface MamdaFundamentalHandler
MamdaFundamentalHandler is an interface for applications that want to have an easy way to access fundamental equity pricing/analysis attributes, indicators and ratios. The interface defines a single callback methods for for receiving updates on fundamental data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onFundamentals(MamdaSubscription subscription, MamdaFundamentalListener listener, com.wombat.mama.MamaMsg msg, MamdaFundamentals fundas)
Access to data from updates containing fundamental data.
-
-
-
Method Detail
-
onFundamentals
void onFundamentals(MamdaSubscription subscription, MamdaFundamentalListener listener, com.wombat.mama.MamaMsg msg, MamdaFundamentals fundas)
Access to data from updates containing fundamental data. Method invoked when one or more of the Fundamental fields have been updated by one of the following market data events: - Initial image. - Recap update (e.g., after server fault tolerant event or data quality event.) - Generic update..- Parameters:
subscription
- The subscription which received the update.listener
- The listener which invoked this callback.msg
- The MamaMsg that triggered this invocation.fundas
- Access to the fundamental details in the update.
-
-