Skip to content

Instantly share code, notes, and snippets.

@mookid8000
Created October 7, 2012 19:23
Show Gist options
  • Save mookid8000/3849308 to your computer and use it in GitHub Desktop.
Save mookid8000/3849308 to your computer and use it in GitHub Desktop.
Rebus timeout example
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