21 lines
415 B
C#
21 lines
415 B
C#
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);
|
|
}
|
|
|
|
}
|