Base.UService.AcceptChannel C# (CSharp) Method

AcceptChannel() public method

public AcceptChannel ( ) : Task
return Task
		public override async Task<AChannel> AcceptChannel()
		{
			USocket socket = await this.poller.AcceptAsync();
			UChannel channel = new UChannel(socket, this);
			this.idChannels[channel.Id] = channel;
			return channel;
		}