Example #1
0
        public IngestionService(IElasticClient client, IIndexManagerService indexManager, IActivityLoggingService activityLogger, int batchSize = DefaultBatchSize)
        {
            this.client         = client;
            this.indexManager   = indexManager;
            this.activityLogger = activityLogger;

            BatchSize = batchSize;
        }
Example #2
0
 public IndexManagerController(IIndexManagerService indexManagerService)
 {
     this.IndexManagerService = indexManagerService;
 }