blob: cdce8c92400f22848fac21b5422e69edee57840f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Transport.Routing;
namespace Tango.Transport
{
/// <summary>
/// Represents a transport router capable of routing data between multiple adapters of different types.
/// </summary>
/// <seealso cref="Tango.Transport.ITransportComponent" />
public interface ITransportRouter : ITransportComponent
{
/// <summary>
/// Gets the collection of <see cref="TransportRoutingChannel">channels</see>.
/// </summary>
ObservableCollection<TransportRoutingChannel> Channels { get; }
}
}
|