Beispiel #1
0
        protected override void BeginProcessing()
        {
            // Instantiating output component
            _output = new QueuedDictionaryOutput();

            // Let child class instantiate event component
            _eventComponent = SetupEventComponent();

            // Starting up event component
            if (_eventComponent == null || !_eventComponent.Start())
            {
                WriteWarning($"ERROR! Problem starting up.");
                _startupError = true;
            }
        }