DocSpace-buildtools/common/services/ASC.ElasticSearch/Engine/IIndexer.cs

11 lines
143 B
C#
Raw Normal View History

namespace ASC.ElasticSearch;
public interface IIndexer
2020-01-24 13:07:51 +00:00
{
string IndexName { get; }
2020-01-24 13:07:51 +00:00
void IndexAll();
2020-01-24 13:07:51 +00:00
Task ReIndex();
2020-01-24 13:07:51 +00:00
}