Renamed Umbraco.Abstractions to Umbraco.Core
This commit is contained in:
22
src/Umbraco.Core/Cache/DistributedCacheBinderComponent.cs
Normal file
22
src/Umbraco.Core/Cache/DistributedCacheBinderComponent.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using Umbraco.Core.Composing;
|
||||
|
||||
namespace Umbraco.Web.Cache
|
||||
{
|
||||
public class DistributedCacheBinderComponent : IComponent
|
||||
{
|
||||
private readonly IDistributedCacheBinder _binder;
|
||||
|
||||
public DistributedCacheBinderComponent(IDistributedCacheBinder distributedCacheBinder)
|
||||
{
|
||||
_binder = distributedCacheBinder;
|
||||
}
|
||||
|
||||
public void Initialize()
|
||||
{
|
||||
_binder.BindEvents();
|
||||
}
|
||||
|
||||
public void Terminate()
|
||||
{ }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user