Base.UChannel.OnRecv C# (CSharp) Method

OnRecv() private method

private OnRecv ( ) : void
return void
		private void OnRecv()
		{
			var tcs = this.recvTcs;
			this.recvTcs = null;
			tcs?.SetResult(this.socket.RecvQueue.Dequeue());
		}
	}