mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
feat: add IRoutingSinkWithLayouts interface to support layouts with multiple tile sinks
This commit is contained in:
parent
21995db550
commit
7d1e0432cb
1 changed files with 19 additions and 0 deletions
|
|
@ -0,0 +1,19 @@
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using PepperDash.Core;
|
||||||
|
using PepperDash.Essentials.Core.Routing;
|
||||||
|
|
||||||
|
namespace PepperDash.Essentials.Core;
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Defines a routing sink (endpoint) device that supports layouts with multiple tile sinks.
|
||||||
|
/// Implements IRoutingSource so the windowed output of the layout can be routed to other devices.
|
||||||
|
/// </summary>
|
||||||
|
public interface IRoutingSinkWithLayouts : IRoutingSource
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the collection of window tile sinks for this routing sink with layouts.
|
||||||
|
/// Each tile sink represents a single window/tile in the layout and can be routed independently.
|
||||||
|
/// </summary>
|
||||||
|
Dictionary<int, IRoutingSinkWithFeedback> WindowTileSinks { get; }
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue