예제 #1
0
		protected CacheSetting(CachePosition position, int capacity, TimeSpan asyncUpdateInterval, TimeSpan asyncTimeToLive)
		{
			this.Position = position;
			this.Capacity = capacity;
			this.AsyncUpdateInterval = asyncUpdateInterval;
			this.AsyncTimeToLive = asyncTimeToLive;
		}
예제 #2
0
		internal CacheSetting(CachePosition position, int capacity, int asyncUpdateInterval)
		{
			this.Position = position;
			this.Capacity = capacity;
			this.AsyncUpdateInterval = asyncUpdateInterval;
		}
예제 #3
0
		internal DistributeCacheSetting(CachePosition position, int capacity, int asyncUpdateIntervalSeconds, int asyncTimeToLiveSeconds)
			: base(position, capacity, TimeSpan.FromSeconds(asyncUpdateIntervalSeconds), TimeSpan.FromSeconds(asyncTimeToLiveSeconds))
		{
		}
예제 #4
0
		internal DistributeCacheSetting(CachePosition position, int capacity, TimeSpan asyncUpdateInterval, TimeSpan asyncTimeToLive)
			: base(position, capacity, asyncUpdateInterval, asyncTimeToLive)
		{
		}