public void OnError(string topicPath, TopicSourceErrorDetails error)
        {
            Log.Spew("Topic Source Update Failed: topicPath=\"" + topicPath + "\", error=\"" + error + "\".");

            var metrics = Metrics;
            if (null == metrics) return;
            metrics.OnFailedTopicSourceUpdate(topicPath);
        }
Пример #2
0
        public void OnError(string topicPath, TopicSourceErrorDetails error)
        {
            Log.Spew("Topic Source Update Failed: topicPath=\"" + topicPath + "\", error=\"" + error + "\".");

            var metrics = Metrics;

            if (null == metrics)
            {
                return;
            }
            metrics.OnFailedTopicSourceUpdate(topicPath);
        }