Files
Umbraco-CMS/src/Umbraco.Abstractions/Cache/IPayloadCacheRefresher.cs

15 lines
473 B
C#
Raw Normal View History

namespace Umbraco.Core.Cache
{
/// <summary>
/// A cache refresher that supports refreshing cache based on a custom payload
/// </summary>
2019-05-20 18:28:35 +02:00
public interface IPayloadCacheRefresher<TPayload> : IJsonCacheRefresher
{
/// <summary>
/// Refreshes, clears, etc... any cache based on the information provided in the payload
/// </summary>
/// <param name="payloads"></param>
void Refresh(TPayload[] payloads);
}
}