using System;
namespace PhoenixLib.ServiceBus.Routing
{
public interface IMessageRouter
{
///
/// Get the routing informations from the router
///
///
///
IRoutingInformation GetRoutingInformation();
///
/// Used for runtime possibilities
///
///
///
IRoutingInformation GetRoutingInformation(Type type);
///
/// Gets the routing information
///
///
///
IRoutingInformation GetRoutingInformation(string type);
}
}