public DocumentCacheStreamListener(PushReadStream stream, DocumentCache cache, string cacheName) : this()
 {
     Stream    = stream;
     Cache     = cache;
     CacheName = cacheName;
     tmpCache  = new List <byte>(16);
     valid     = true;
 }
Example #2
0
 public ManagedCache(DocumentCache rootCache)
 {
     RootCache = rootCache;
 }