Started moving caches..

This commit is contained in:
Bjarke Berg
2019-05-20 18:28:35 +02:00
parent 34648fc8aa
commit 8bf90bae91
7 changed files with 7 additions and 12 deletions

View File

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