Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ICacheInvalidationService.cs
2using System.Threading.Tasks;
4
6{
7 [DefaultImplementation(typeof(CacheInvalidationService))]
8 public interface ICacheInvalidationService
9 {
10 Task<int> InvalidateByParentId(string parentId, string scope);
11 Task<int> InvalidateByKeys(IEnumerable<string> keys, string scope);
12 }
13}
14