Created
October 7, 2012 19:23
-
-
Save mookid8000/3849308 to your computer and use it in GitHub Desktop.
Rebus timeout example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
These two can be in the same handler: | |
public void Handle(SomethingInteresting msg) | |
{ | |
var correlationId = "possiblySomethingThatMakesSense"; | |
bus.Send(new SomeMessageThatKicksOffSomeProcess { CorrelationId = correlationId }); | |
bus.Defer(TimeSpan.FromMinutes(2), new VerifyThatAllExpectedRepliesWereReceived { CorrelationId = correlationId }); | |
} | |
public void Handle(VerifyThatAllExpectedRepliesWereReceived msg) | |
{ | |
var correlationId = msg.CorrelationId; | |
// check whether process was completed for something that we can identify via the correlation ID | |
// send emails, perform compensating actions, etc | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment