Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ICache.cs
1using System;
2
4{
8 public interface ICache : IDisposable
9 {
15 {
16 get;
17 }
18
22 void Clear();
23 }
24}
Interface for caches.
Definition: ICache.cs:9
void Clear()
Clears the cache.
bool Standalone
If cache is a standalone cache, or if it can be managed collectively with other caches.
Definition: ICache.cs:15