Files
Umbraco-CMS/umbraco/interfaces/ICacheRefresher.cs
Shandem f6d0d043b5 DO NOT DOWNLOAD. DOWNLOAT LATEST STABLE FROM RELEASE TAB
Created 4.1.0 branch

[TFS Changeset #55082]
2009-06-19 07:39:16 +00:00

20 lines
408 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);
}
}