using System; namespace Tapeti { /// /// Translates message classes into their target exchange. /// public interface IExchangeStrategy { /// /// Determines the exchange belonging to the given message class. /// /// /// string GetExchange(Type messageType); } }