using System; using System.Collections.Generic; using System.Text; namespace Taobao.Top.Link.Channel { /// channel holder/pool that switch channel by uri.scheme /// public interface IClientChannelSelector { /// get channel /// /// /// IClientChannel GetChannel(Uri uri); /// return channel /// /// void ReturnChannel(IClientChannel channel); } }