mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-21 11:17:28 +08:00
10 lines
261 B
C#
10 lines
261 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace Orchard.Indexing.Services {
|
|||
|
public interface IIndexingService : IDependency {
|
|||
|
bool HasIndexToManage { get; }
|
|||
|
void RebuildIndex();
|
|||
|
void UpdateIndex();
|
|||
|
DateTime GetIndexUpdatedUtc();
|
|||
|
}
|
|||
|
}
|