Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Things that MT adds on top of just using RabbitMQ:</p> <ul> <li>Multithreaded, concurrent consumers</li> <li>Message serialization, including interfaces, and versioning</li> <li>Automatic exchange bindings, publish conventions</li> <li>Sagas, including persistent state via NHibernate</li> <li>Performance counters for your services</li> <li>Message headers</li> <li>Fault handling</li> </ul> <p>Those are just a few, some more significant than others. The fact that the bus hosts your consumers, handlers, sagas, and manages all of the threading is probably the biggest advantage, and the fact that you can host multiple buses in the same process.</p> <p>Serialization is the next biggest benefit, since that can be painful to figure out, and getting an interface-based message contract with automatic deserialized into types (including dynamically-backed interface types) is huge. Publishing a single class that implements multiple interfaces, and seeing all interested consumers pick up their piece of the message asynchronously is just awesome in production as new interfaces can be added to producers and downlevel consumers are unaffected.</p> <p>Those are a few, you can check out the documentation for more at <a href="http://masstransit-project.com/MassTransit/understand/additions-to-transport.html" rel="noreferrer">http://masstransit-project.com/MassTransit/understand/additions-to-transport.html</a>, or give the recent <a href="http://www.dotnetrocks.com/default.aspx?showNum=798" rel="noreferrer">.NET Rocks! podcast</a> a listen for some related content by yours truly.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload