Exemplo n.º 1
0
        private void Handle(SystemMessage.ShutdownTimeout message)
        {
            Debug.Assert(_state == VNodeState.ShuttingDown);

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

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

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

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