コード例 #1
0
 public IndexController(IndexConfiguration configuration, IFrameworkContext frameworkContext)
 {
     Configuration    = configuration;
     FrameworkContext = frameworkContext;
     _manualResetter  = new ManualResetEvent(false);
     Queue            = new IndexModificationQueue();
 }
コード例 #2
0
ファイル: IndexReader.cs プロジェクト: RebelCMS/rebelcmsxu5
 public IndexReader(IndexConfiguration indexConfiguration, global::Lucene.Net.Index.IndexReader indexReader)
 {
     _indexReader        = indexReader;
     _indexConfiguration = indexConfiguration;
 }
コード例 #3
0
 public IndexController(IndexConfiguration configuration, Func <IFrameworkContext> frameworkContextGetter)
     : this(configuration, (IFrameworkContext)null)
 {
     _frameworkContextGetter = frameworkContextGetter;
 }
コード例 #4
0
 public TransactionalIndexWorker(IndexConfiguration indexConfiguration, IndexWriter indexWriter)
 {
     this._indexConfiguration = indexConfiguration;
     this._indexWriter = indexWriter;
 }