Files
Orchard/src/Orchard.Web/Modules/Orchard.Indexing/Services/IIndexService.cs

10 lines
261 B
C#
Raw Normal View History

using System;
namespace Orchard.Indexing.Services {
public interface IIndexingService : IDependency {
bool HasIndexToManage { get; }
void RebuildIndex();
void UpdateIndex();
DateTime GetIndexUpdatedUtc();
}
}