public LuceneSiteIndexHandler(IContentRepository contentRepository
                               , IDocumentRepository documentRepository, IIndexingHandler indexingHandler)
 {
     _contentRepository  = contentRepository;
     _indexingHandler    = indexingHandler;
     _documentRepository = documentRepository;
 }
Exemplo n.º 2
0
 public LuceneSiteIndexController(ISiteDefinitionRepository siteDefinitionRepository, IContentIndexRepository contentIndexRepository
                                  , IContentRepository contentRepository, IRemoteContentIndexRepository remoteContentIndexRepository
                                  , IIndexingHandler indexingHandler)
 {
     _siteDefinitionRepository     = siteDefinitionRepository;
     _contentIndexRepository       = contentIndexRepository;
     _contentRepository            = contentRepository;
     _remoteContentIndexRepository = remoteContentIndexRepository;
     _indexingHandler = indexingHandler;
 }
Exemplo n.º 3
0
 public QueuedIndexingHandler(IEventRegistry eventRegistry)
 {
     _localIndexingHandler = new IndexingHandler();
     _eventService         = eventRegistry;
 }