We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice if the saga could set a timeout in the message handlers.
For example, the saga could implement such an interface, similar to ISagaAction:
ISagaAction
public interface ISagaTimeoutAction { Task HandleTimeoutAsync(ISagaContext context); Task CompensateTimeoutAsync(ISagaContext context); }
(I'm supposing that a timeout doesn't necessarily complete the Saga.)
Timeout could be scheduled in message handler through a method of ISaga
ISaga
public interface ISaga { // ... void ScheduleTimeout(TimeSpan timeSpan, ISagaContext context); }
Source of inspiration: https://docs.particular.net/nservicebus/sagas/timeouts
The text was updated successfully, but these errors were encountered:
We should consider adding this one! Thx!
Sorry, something went wrong.
No branches or pull requests
It would be nice if the saga could set a timeout in the message handlers.
For example, the saga could implement such an interface, similar to
ISagaAction
:(I'm supposing that a timeout doesn't necessarily complete the Saga.)
Timeout could be scheduled in message handler through a method of
ISaga
Source of inspiration: https://docs.particular.net/nservicebus/sagas/timeouts
The text was updated successfully, but these errors were encountered: