DotNetGroup.Services.StreamReprocessor.StreamReprocessor C# (CSharp) Method

StreamReprocessor() public method

public StreamReprocessor ( IItemProcessor streamProcessor, IStreamStorage streamStorage ) : System
streamProcessor IItemProcessor
streamStorage IStreamStorage
return System
        public StreamReprocessor(IItemProcessor streamProcessor, IStreamStorage streamStorage)
        {
            if (streamProcessor == null)
            {
                throw new ArgumentNullException("streamProcessor");
            }

            if (streamStorage == null)
            {
                throw new ArgumentNullException("streamStorage");
            }

            this.streamProcessor = streamProcessor;
            this.streamStorage = streamStorage;
        }

Same methods

StreamReprocessor::StreamReprocessor ( string connectionString, string database ) : System