using System;
namespace Abp.Runtime.Caching.Configuration
{
///
/// A registered cache configurator.
///
public interface ICacheConfigurator
{
///
/// Name of the cache.
/// It will be null if this configurator configures all caches.
///
string CacheName { get; }
///
/// Configuration action. Called just after the cache is created.
///
Action InitAction { get; }
}
}