This commit is contained in:
Stephan
2018-12-21 10:38:14 +01:00
parent d0623bc494
commit 70dd85f708

View File

@@ -1,22 +1,20 @@
using System.Collections.Generic;
using Examine;
using Examine;
namespace Umbraco.Examine
{
public interface IIndexPopulator
{
/// <summary>
/// If this index is registered with this populatr
/// If this index is registered with this populator
/// </summary>
/// <param name="index"></param>
/// <returns></returns>
bool IsRegistered(IIndex index);
/// <summary>
/// Populate indexers
/// Populate indexers
/// </summary>
/// <param name="indexes"></param>
void Populate(params IIndex[] indexes);
}
}