blob: 3b64b46761ccf207e2f6364e1cc81238b4338698 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.FSE.BL
{
/// <summary>
/// Represents an in-memory cache dictionary.
/// </summary>
public interface IMemoryCacheDictionary
{
/// <summary>
/// Gets the cache name.
/// </summary>
String Name { get; }
/// <summary>
/// Gets the count of items.
/// </summary>
int Count { get; }
/// <summary>
/// Clears this all items from cache.
/// </summary>
void Clear();
}
}
|