Class ValidateTrade
A single ValidateTrade active in the system.
A Trade is initiated by a client and is tied to a TradeChannel
. The lifecycle of a Trade consists
of a number of messages, represented by TradeEvents, being sent between the client and the
Trading System in both directions. These messages cause the Trade to transition between a number
of predefined states.
Trades are comprised of one or more trade legs, which each leg representing the exchange of a financial instrument and the resultant cash flow. It is possible to add, remove and update trades from the client or from the TradingDataSource.
A Trade is uniquely identified in two ways: by RequestId set by the client and a TradeId set by the Trading System.
-
Constructor Summary
ConstructorDescriptionValidateTrade
(@NotNull com.caplin.trading.Trade backingTrade, @NotNull ScheduledExecutorService executorService) Constructor used by the generated code. -
Method Summary
Modifier and TypeMethodDescription@NotNull ClientCloseAckTradeEvent
Create aTradeEvent
that can be passed to
to trigger the ClientCloseAck transition in the trade model of the adapter and client applicationTrade.sendEvent
@NotNull ErrorTradeEvent
Create aTradeEvent
that can be passed to
to trigger the Error transition in the trade model of the adapter and client applicationTrade.sendEvent
@NotNull ValidationTradeEvent
Create aTradeEvent
that can be passed to
to trigger the Validation transition in the trade model of the adapter and client applicationTrade.sendEvent
void
Send aTradeEvent
with no fields to trigger the ClientCloseAck transition in the trade model of the adapter and client applicationvoid
sendClientCloseAckEvent
(@NotNull ClientCloseAckTradeEvent event) Send aTradeEvent
to trigger the ClientCloseAck transition in the trade model of the adapter and client applicationvoid
Send aTradeEvent
with no fields to trigger the Error transition in the trade model of the adapter and client applicationvoid
sendErrorEvent
(@NotNull ErrorTradeEvent event) Send aTradeEvent
to trigger the Error transition in the trade model of the adapter and client applicationvoid
Send aTradeEvent
with no fields to trigger the Validation transition in the trade model of the adapter and client applicationvoid
sendValidationEvent
(@NotNull ValidationTradeEvent event) Send aTradeEvent
to trigger the Validation transition in the trade model of the adapter and client applicationMethods inherited from class com.caplin.motif.UserTrade
getBackingTrade, getExecutorService, getRequestID, getUsername, toString
-
Constructor Details
-
ValidateTrade
public ValidateTrade(@NotNull @NotNull com.caplin.trading.Trade backingTrade, @NotNull @NotNull ScheduledExecutorService executorService) Constructor used by the generated code.
- Parameters:
backingTrade
- To be used for the parent constructorexecutorService
- To be used for the parent constructor (What service is going execute the backingTrade)
-
-
Method Details
-
createValidationTradeEvent
Create a
TradeEvent
that can be passed to
to trigger the Validation transition in the trade model of the adapter and client applicationTrade.sendEvent
- Returns:
- A new instance of ValidationTradeEvent.
-
sendValidationEvent
Send a
TradeEvent
to trigger the Validation transition in the trade model of the adapter and client application- Parameters:
event
- The event to send.
-
sendValidationEvent
public void sendValidationEvent()Send a
TradeEvent
with no fields to trigger the Validation transition in the trade model of the adapter and client application -
createErrorTradeEvent
Create a
TradeEvent
that can be passed to
to trigger the Error transition in the trade model of the adapter and client applicationTrade.sendEvent
- Returns:
- A new instance of ErrorTradeEvent.
-
sendErrorEvent
Send a
TradeEvent
to trigger the Error transition in the trade model of the adapter and client application- Parameters:
event
- The event to send.
-
sendErrorEvent
public void sendErrorEvent()Send a
TradeEvent
with no fields to trigger the Error transition in the trade model of the adapter and client application -
createClientCloseAckTradeEvent
Create a
TradeEvent
that can be passed to
to trigger the ClientCloseAck transition in the trade model of the adapter and client applicationTrade.sendEvent
- Returns:
- A new instance of ClientCloseAckTradeEvent.
-
sendClientCloseAckEvent
Send a
TradeEvent
to trigger the ClientCloseAck transition in the trade model of the adapter and client application- Parameters:
event
- The event to send.
-
sendClientCloseAckEvent
public void sendClientCloseAckEvent()Send a
TradeEvent
with no fields to trigger the ClientCloseAck transition in the trade model of the adapter and client application
-