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