user170469
user170469

Reputation: 13

NServicebus delay message saga?

How can I delay processing a saga message in NServicebus for 24 hours?

Upvotes: 1

Views: 687

Answers (1)

Udi Dahan
Udi Dahan

Reputation: 12067

I'd recommend holding on to the message data in your saga, request a timeout for 24 hours, and when your saga gets the timeout call, do your processing.

Upvotes: 1

Related Questions