tangxu
2024-04-30 26d8996e55c33186800031f7c305688035bb3182
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace IStation.ChEr
{
    /// <summary>
    /// Respresents the setting state of a cache item whilst a write operation is being attempted on it via a consumer supplied function
    /// </summary>
    internal class CacheKeyBeingHandled
    {
        /// <summary>
        /// State of a GetGet operation acting on this key
        /// </summary>
        internal GetSetOperation GetSetOperation { get; } = new GetSetOperation();
 
        /// <summary>
        /// State of a Set operation acting on this key
        /// </summary>
        internal SetOperation SetOperation { get; } = new SetOperation();
    }
}