public WorkflowDefinitionSearch(ElasticsearchContext elasticsearchContext, IMapper mapper, IOptions <ElsaElasticsearchOptions> options) : base(elasticsearchContext, mapper)
 {
     _indexName = options.Value.WorkflowDefinitionIndexName;
 }
Beispiel #2
0
 public ElasticsearchStore(ElasticsearchContext context, string indexName)
 {
     this.context   = context;
     this.indexName = indexName;
 }
Beispiel #3
0
 protected Searcher(ElasticsearchContext elasticsearchContext, IMapper mapper)
 {
     this.elasticsearchContext = elasticsearchContext;
     this.mapper = mapper;
 }