Files
Umbraco-CMS/umbraco/interfaces/ICacheRefresher.cs

20 lines
408 B
C#
Raw Normal View History

using System;
namespace umbraco.interfaces
{
/// <summary>
/// The IcacheRefresher Interface is used for loadbalancing.
///
/// </summary>
public interface ICacheRefresher {
Guid UniqueIdentifier { get;}
string Name { get;}
void RefreshAll();
void Refresh(int Id);
void Remove(int Id);
void Refresh(Guid Id);
}
}