namespace PepperDash.Essentials.Core
{
///
/// For fixed-source endpoint devices
///
public interface IRoutingSink : IRoutingInputs, IHasCurrentSourceInfoChange
{
}
///
/// For fixed-source endpoint devices with an input port
///
public interface IRoutingSinkWithInputPort :IRoutingSink
{
///
/// Gets the current input port for this routing sink.
///
RoutingInputPort CurrentInputPort { get; }
}
/*///
/// For fixed-source endpoint devices
///
public interface IRoutingSink : IRoutingInputs, IHasCurrentSourceInfoChange
{
void UpdateRouteRequest(RouteRequest request);
RouteRequest GetRouteRequest();
}*/
}