using System.Threading;
using System.Threading.Tasks;
namespace Oqtane.Services
{
///
/// Service to manage cache
///
public interface IOutputCacheService
{
///
/// Evicts the output cache for a specific tag
///
///
///
Task EvictByTag(string tag);
}
}