mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-04 07:14:58 +00:00
25 lines
615 B
C#
25 lines
615 B
C#
using PepperDash.Essentials.Core.Routing;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
|
|
/// <summary>
|
|
/// Defines the contract for IRoutingSinkWithFeedback
|
|
/// </summary>
|
|
public interface IRoutingSinkWithFeedback : IRoutingSinkWithSwitching
|
|
{
|
|
|
|
}
|
|
|
|
/* /// <summary>
|
|
/// For fixed-source endpoint devices
|
|
/// </summary>
|
|
public interface IRoutingSinkWithFeedback<TSelector> : IRoutingSinkWithSwitching<TSelector>
|
|
{
|
|
RouteSwitchDescriptor CurrentRoute { get; }
|
|
|
|
event EventHandler InputChanged;
|
|
}*/
|
|
} |