You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val saga =SagaDSL(subscriptionModel, deadlineScheduler, applicationService, eventStore)
val sagaInstance = saga.initializedOn<GameCreated> thenIf<PlayerJoinedGame>(notReceivedWithin(10, MINUTES)) do { gameCreated ->Game.close(gameCreated.gameId)
}
Resulting events from Game.close(gameCreated.gameId) is stored using the AS. A subscription is automatically created on GameCreated and PlayerJoinedGame. Saga state could be stored in a stream in an event store, which is why we pass that in as a parameter to SagaDSL.
The text was updated successfully, but these errors were encountered:
E.g.
Resulting events from
Game.close(gameCreated.gameId)
is stored using the AS. A subscription is automatically created onGameCreated
andPlayerJoinedGame
. Saga state could be stored in a stream in an event store, which is why we pass that in as a parameter to SagaDSL.The text was updated successfully, but these errors were encountered: