示例#1
0
		public CachePackage()
		{
			this.identifier = "root";
			this.Flush();
			this.openSourceDocumentCache = new SizeSensitiveCache("openDocumentCache" + this.suffix);
			this.openDocumentPrioritizer = new OpenDocumentSensitivePrioritizer(this.openSourceDocumentCache);
			this.diskCache = new DiskCache();
		}
示例#2
0
 public CachePackage()
 {
     this.identifier = "root";
     this.Flush();
     this.openSourceDocumentCache = new SizeSensitiveCache("openDocumentCache" + this.suffix);
     this.openDocumentPrioritizer = new OpenDocumentSensitivePrioritizer(this.openSourceDocumentCache);
     this.diskCache = new DiskCache();
 }
示例#3
0
 public CachePackage()
 {
     identifier = "root";
     Flush();
     openSourceDocumentCache = new SizeSensitiveCache("openDocumentCache" + suffix);
     openDocumentPrioritizer = new OpenDocumentSensitivePrioritizer(openSourceDocumentCache);
     diskCache = new DiskCache();
 }
 public OpenDocumentSensitivePrioritizer(SizeSensitiveCache openDocumentCache)
 {
     this.openDocumentCache = openDocumentCache;
     openDocumentCache.AddCallback(this);
 }