using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace ZeroLevel.Sleopok.Engine.Services.Indexes { public interface IIndexReader { Task>> Search(string[] tokens, bool exactMatch); IAsyncEnumerable GetAll(); } }