AK.F1.Timing.Server.TcpServer.AcceptAsync C# (CSharp) Method

AcceptAsync() private method

private AcceptAsync ( ) : void
return void
        private void AcceptAsync()
        {
            var listener = _listener;
            var acceptEvent = _acceptEvent;
            if(listener != null && acceptEvent != null && !listener.AcceptAsync(acceptEvent))
            {
                OnAcceptEventCompleted(listener, acceptEvent);
            }
        }