You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to masstransit-discuss
Is there a way to set TimeToBeReceived by message type? I see that
there's a MassTransit.TimeoutAttribute, but it doesn't seem to being
used anywhere (at least according to R#).
I think it would be really nice if things like heartbeat messages have
TimeToBeReceived set so that there's no chance for MSMQ to fail from
being flooded (as has just happened to me :p)
Dru Sellers
unread,
Oct 30, 2009, 1:56:22 PM10/30/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to masstrans...@googlegroups.com
Yeah, we need to look at either clearing that guy out, or getting it to work. I will see if I can't take a peek this weekend. -d
Chris Patterson
unread,
Oct 30, 2009, 10:07:54 PM10/30/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to masstrans...@googlegroups.com
You can apply the header attribute to the message using:
_bus.Publish(message, x => x.ExpiresAt(5.Minutes().FromNow()));
I'll look and see how the publish code could make this apply at the interface and/or message level.