Akka.Interfaced.SlimSocket.Server.TcpGateway.IGatewaySync C# (CSharp) Метод

IGatewaySync() приватный Метод

private IGatewaySync ( ) : void
Результат void
        void IGatewaySync.Start()
        {
            _logger?.InfoFormat("Start (EndPoint={0})", _initiator.ListenEndPoint);

            try
            {
                _tcpAcceptor = new TcpAcceptor();
                _tcpAcceptor.Accepted += OnConnectionAccept;
                _tcpAcceptor.Listen(_initiator.ListenEndPoint);
            }
            catch (Exception e)
            {
                _logger?.ErrorFormat("Start got exception.", e);
            }
        }

Same methods

TcpGateway::IGatewaySync ( bool stopListenOnly ) : void