namespace AutoUpdater { public interface IRouting { /// /// pick a instance to receive the message /// /// The message that is being routed /// A collection of instance /// T select(object message, params T[] instances); } }