Lucene.Net.Index.TestDocumentsWriterStallControl.Updater.Updater C# (CSharp) Method

Updater() public method

public Updater ( AtomicBoolean stop, AtomicBoolean checkPoint, DocumentsWriterStallControl ctrl, Synchronizer sync, bool release, IList exceptions ) : Apache.NMS.Util
stop AtomicBoolean
checkPoint AtomicBoolean
ctrl DocumentsWriterStallControl
sync Synchronizer
release bool
exceptions IList
return Apache.NMS.Util
            public Updater(AtomicBoolean stop, AtomicBoolean checkPoint, DocumentsWriterStallControl ctrl, Synchronizer sync, bool release, IList<Exception> exceptions)
                : base("updater")
            {
                this.Stop = stop;
                this.CheckPoint = checkPoint;
                this.Ctrl = ctrl;
                this.Sync = sync;
                this.Release = release;
                this.Exceptions = exceptions;
            }
TestDocumentsWriterStallControl.Updater