Mark van Renswoude
6c32665c8a
Reimplemented the exception strategy and logging Much XML documentation, such wow
18 lines
434 B
C#
18 lines
434 B
C#
using System;
|
|
|
|
namespace Tapeti
|
|
{
|
|
/// <summary>
|
|
/// Translates message classes into their target exchange.
|
|
/// </summary>
|
|
public interface IExchangeStrategy
|
|
{
|
|
/// <summary>
|
|
/// Determines the exchange belonging to the given message class.
|
|
/// </summary>
|
|
/// <param name="messageType"></param>
|
|
/// <returns></returns>
|
|
string GetExchange(Type messageType);
|
|
}
|
|
}
|