namespace PepperDash.Essentials.Core
{
///
/// Defines a routing device () that supports explicitly clearing a route on an output.
///
public interface IRoutingWithClear : IRouting
{
///
/// Clears a route to an output, however a device needs to do that
///
/// Output to clear
/// signal type to clear
void ClearRoute(object outputSelector, eRoutingSignalType signalType);
}
}