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

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

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

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

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