2018-04-18 19:46:47 +02:00
|
|
|
|
using Umbraco.Core.Components;
|
2016-08-31 16:48:57 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.PublishedCache.NuCache
|
|
|
|
|
|
{
|
2019-01-04 08:36:38 +01:00
|
|
|
|
public sealed class NuCacheComponent : IComponent
|
2016-08-31 16:48:57 +02:00
|
|
|
|
{
|
2019-01-04 08:36:38 +01:00
|
|
|
|
public NuCacheComponent(IPublishedSnapshotService service)
|
2016-08-31 16:48:57 +02:00
|
|
|
|
{
|
|
|
|
|
|
// nothing - this just ensures that the service is created at boot time
|
|
|
|
|
|
}
|
2019-01-07 09:30:47 +01:00
|
|
|
|
|
|
|
|
|
|
public void Initialize()
|
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
|
|
public void Terminate()
|
|
|
|
|
|
{ }
|
2016-08-31 16:48:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|