public TeamCityServiceMessages()

in TeamCity.ServiceMessages/Write/Special/TeamCityServiceMessages.cs [26:37]


        public TeamCityServiceMessages(
            [NotNull] IServiceMessageFormatter formatter,
            [NotNull] IFlowIdGenerator flowIdGenerator,
            [NotNull] IEnumerable<IServiceMessageUpdater> updaters)
        {
            if (formatter == null) throw new ArgumentNullException(nameof(formatter));
            if (flowIdGenerator == null) throw new ArgumentNullException(nameof(flowIdGenerator));
            if (updaters == null) throw new ArgumentNullException(nameof(updaters));
            Formatter = formatter;
            FlowIdGenerator = flowIdGenerator;
            Updaters = updaters;
        }