コード例 #1
0
 internal SynchronizedSimpleMapCache(SimpleMapCache <TKey, TValue> cache)
 {
     this.cache = cache;
     this.mutex = this;
 }
コード例 #2
0
 protected internal SynchronizedSimpleMapCache(SimpleMapCache cache)
 {
     this.cache = cache;
     this.mutex = this;
 }
コード例 #3
0
 protected internal SynchronizedSimpleMapCache(SimpleMapCache cache)
 {
     this.cache = cache;
     this.mutex = this;
 }
コード例 #4
0
ファイル: SimpleMapCache.cs プロジェクト: pchaozhong/FlexNet
 internal SynchronizedSimpleMapCache(SimpleMapCache <K, V> cache)
 {
     this.cache = cache;
     this.mutex = this;
 }