tangxu
2022-10-24 d9f0427d4e079d866d1b17dfc204fee9aaa69b1b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace IStation
{
    /// <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();
    }
}