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