Mango.Nop.Libraries/Nop.Services/Media/Caching/PictureCacheEventConsumer.cs

20 lines
588 B
C#

using Nop.Core.Domain.Media;
using Nop.Services.Caching;
namespace Nop.Services.Media.Caching;
/// <summary>
/// Represents a picture cache event consumer
/// </summary>
public partial class PictureCacheEventConsumer : CacheEventConsumer<Picture>
{
/// <summary>
/// Clear cache data
/// </summary>
/// <param name="entity">Entity</param>
/// <returns>A task that represents the asynchronous operation</returns>
protected override async Task ClearCacheAsync(Picture entity)
{
await RemoveByPrefixAsync(NopMediaDefaults.ThumbsExistsPrefix);
}
}