Interface TradingConnectionRouter
-
public interface TradingConnectionRouter
Retrieved the connection pool key for a given trade.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
TradingConnectionRouter.Context
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getConnectionKey(com.caplin.motif.UserTrade trade)
Retrieve the connection key from the given trade.void
initialise(TradingConnectionRouter.Context context)
This notifies the TradingConnectionRouter that it is about to be loaded.
-
-
-
Method Detail
-
initialise
void initialise(TradingConnectionRouter.Context context)
This notifies the TradingConnectionRouter that it is about to be loaded. This method will be called by the system once.You should use this method to perform any initialization before the TradingConnectionRouter is loaded by the system.
-
getConnectionKey
java.lang.String getConnectionKey(com.caplin.motif.UserTrade trade)
Retrieve the connection key from the given trade.
-
-