Exemple #1
0
        private void Handle(SystemMessage.ShutdownTimeout message)
        {
            Debug.Assert(_state == VNodeState.ShuttingDown);

            Log.Info("========== [{0}] Shutdown Timeout.", _httpEndPoint);
            Shutdown();
        }
        private void Handle(SystemMessage.ShutdownTimeout message)
        {
            Debug.Assert(_state == VNodeState.ShuttingDown);

            Log.Error("========== [{0}] Shutdown Timeout.", _nodeInfo.InternalHttp);
            Shutdown();
            _outputBus.Publish(message);
        }
        private void Handle(SystemMessage.ShutdownTimeout message)
        {
            if (_state != VNodeState.ShuttingDown)
            {
                return;
            }

            Log.Info("========== Shutdown Timeout: SingleVNodeController =========");
            Shutdown();
        }
        private void Handle(SystemMessage.ShutdownTimeout message)
        {
            if (_state != VNodeState.ShuttingDown)
            {
                throw new Exception();
            }

            Log.Info("========== [{0}] Shutdown Timeout.", _httpEndPoint);
            Shutdown();
        }