generik0
generik0

Reputation: 33

MassTransit Transactional Outbox Delay Handling

When publishing to the MassTransit Inbox is there a way to define that the handling of the outbox should be delayed? I.e. not the message being sent over the bus, but the inbox/outbox context being handled by with a TimeSpan delay? I guess it would need to be in the message being published that the handling should be delayed.

Upvotes: 0

Views: 227

Answers (1)

Chris Patterson
Chris Patterson

Reputation: 33457

If you want to delay the delivery/consumption of a message, the producer should delay it when the message is produced.

Upvotes: 0

Related Questions