mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-01 22:04:52 +00:00
29 lines
815 B
C#
29 lines
815 B
C#
using PepperDash.Essentials.Core.Routing;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IRoutingSink
|
|
/// </summary>
|
|
public interface IRoutingSink : IRoutingInputs, IHasCurrentSourceInfoChange
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// For fixed-source endpoint devices with an input port
|
|
/// </summary>
|
|
public interface IRoutingSinkWithInputPort : IRoutingSink
|
|
{
|
|
/// <summary>
|
|
/// Gets the current input port for this routing sink.
|
|
/// </summary>
|
|
RoutingInputPort CurrentInputPort { get; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Interface for routing sinks that have access to the current source information.
|
|
/// </summary>
|
|
public interface IRoutingSinkWithCurrentSources : IRoutingSink, ICurrentSources
|
|
{
|
|
}
|
|
} |