using umbraco.interfaces;
namespace Umbraco.Core.Cache
{
///
/// A cache refresher that supports refreshing cache based on a custom payload
///
interface IPayloadCacheRefresher : IJsonCacheRefresher
{
///
/// Refreshes, clears, etc... any cache based on the information provided in the payload
///
///
void Refresh(object payload);
}
}