infrastructure for dealing with client cache invalidation in a multi-user environment
This commit is contained in:
13
Oqtane.Server/Infrastructure/Interfaces/ISyncManager.cs
Normal file
13
Oqtane.Server/Infrastructure/Interfaces/ISyncManager.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using Oqtane.Models;
|
||||
using Oqtane.Shared;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Oqtane.Infrastructure
|
||||
{
|
||||
public interface ISyncManager
|
||||
{
|
||||
List<SyncEvent> GetSyncEvents(DateTime LastSyncDate);
|
||||
void AddSyncEvent(string EntityName, int EntityId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user