Interface BlockStateEventFactory
-
- All Known Implementing Classes:
CancellableBlockStateEventFactory
public interface BlockStateEventFactory
A factory which createsBlockStateEvent
objects.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
BlockStateEventFactory.Context
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlockStateEvent
createTradeStateEventForWithdraw(java.lang.String tradeId, com.caplin.ret.trapi.fx.execution.TradeEvent event, BlockHandler tradeHandler)
Returns a newBlockStateEvent
for a withdraw event.void
initialise(BlockStateEventFactory.Context context)
This notifies theRESTradeListenerEventInfoFactory
that it is about to be loaded.
-
-
-
Method Detail
-
initialise
void initialise(BlockStateEventFactory.Context context)
This notifies the
RESTradeListenerEventInfoFactory
that it is about to be loaded. This method will be called by the system once.You should use this method to perform any initialisation required before the
BlockStateEventFactory
is loaded by the system.
-
createTradeStateEventForWithdraw
BlockStateEvent createTradeStateEventForWithdraw(java.lang.String tradeId, com.caplin.ret.trapi.fx.execution.TradeEvent event, BlockHandler tradeHandler)
Returns a new
BlockStateEvent
for a withdraw event.Use this method to create a new
BlockStateEvent
.
-
-