Files
Umbraco-CMS/src/Umbraco.Abstractions/Cache/IPayloadCacheRefresher.cs
2019-05-20 18:28:35 +02:00

15 lines
473 B
C#

namespace Umbraco.Core.Cache
{
/// <summary>
/// A cache refresher that supports refreshing cache based on a custom payload
/// </summary>
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);
}
}