Reputation: 14436
Is there is any DataBus libraries that can plug on top of the MassTransit pipeline to allow sending of large payloads? Ideally I'd want to store these in MongoDb using their GridFS.
What I'm looking for is something similar to NServiceBus DataBus feature - http://docs.particular.net/nservicebus/messaging/databus
Thanks in advance!
Upvotes: 1
Views: 345
Reputation: 33278
Yes, there is a similar feature in MassTransit, and is explained in this blog post:
http://blog.phatboyg.com/masstransit/2015/06/16/masstransit-v3-update.html
It's not in the documentation yet, but will be documented in a future update. The ability to encrypt the message data was added in v3.0.15 as well, and there are unit tests that show how it is done (yes, this too needs to be documented).
Upvotes: 1