11 lines
268 B
C#
11 lines
268 B
C#
|
|
namespace Umbraco.Cms.Infrastructure.HybridCache;
|
|||
|
|
|
|||
|
|
public interface ISeedKeyProvider
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets keys of documents that should be seeded into the cache.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns>Keys to seed</returns>
|
|||
|
|
ISet<Guid> GetSeedKeys();
|
|||
|
|
}
|