mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-07 00:35:07 +00:00
15 lines
586 B
C#
15 lines
586 B
C#
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines a routing device (<see cref="IRouting"/>) that supports explicitly clearing a route on an output.
|
|
/// </summary>
|
|
public interface IRoutingWithClear : IRouting
|
|
{
|
|
/// <summary>
|
|
/// Clears a route to an output, however a device needs to do that
|
|
/// </summary>
|
|
/// <param name="outputSelector">Output to clear</param>
|
|
/// <param name="signalType">signal type to clear</param>
|
|
void ClearRoute(object outputSelector, eRoutingSignalType signalType);
|
|
}
|
|
} |