Example #1
0
 public IndexController(IndexConfiguration configuration, IFrameworkContext frameworkContext)
 {
     Configuration    = configuration;
     FrameworkContext = frameworkContext;
     _manualResetter  = new ManualResetEvent(false);
     Queue            = new IndexModificationQueue();
 }
Example #2
0
 public IndexReader(IndexConfiguration indexConfiguration, global::Lucene.Net.Index.IndexReader indexReader)
 {
     _indexReader        = indexReader;
     _indexConfiguration = indexConfiguration;
 }
Example #3
0
 public IndexController(IndexConfiguration configuration, Func <IFrameworkContext> frameworkContextGetter)
     : this(configuration, (IFrameworkContext)null)
 {
     _frameworkContextGetter = frameworkContextGetter;
 }
 public TransactionalIndexWorker(IndexConfiguration indexConfiguration, IndexWriter indexWriter)
 {
     this._indexConfiguration = indexConfiguration;
     this._indexWriter = indexWriter;
 }