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
{
///
/// Represents a transport router capable of routing data between multiple adapters of different types.
///
///
public interface ITransportRouter : ITransportComponent
{
///
/// Gets the collection of channels.
///
ObservableCollection Channels { get; }
}
}