Exemplo n.º 1
0
 public virtual void Dispose()
 {
     if (RealDictionary != null)
     {
         RealDictionary.Dispose();
         RealDictionary = null;
     }
 }
Exemplo n.º 2
0
        protected override void OnRemove(TKey key)
        {
            KeysCache.Remove(key);

            if (RealDictionary.ContainsKey(key))
            {
                ValuesCache.Remove(RealDictionary[key]);
            }
        }
Exemplo n.º 3
0
 public virtual bool Search(object key)
 {
     return(RealDictionary.Search(key));
 }
Exemplo n.º 4
0
 public virtual bool MoveTo(long dataAddress)
 {
     return(RealDictionary.MoveTo(dataAddress));
 }
Exemplo n.º 5
0
 public virtual bool EndOfTree()
 {
     return(RealDictionary.EndOfTree());
 }
Exemplo n.º 6
0
 public virtual object Clone()
 {
     return(RealDictionary.Clone());
 }
Exemplo n.º 7
0
 public virtual void Unpack(System.IO.BinaryReader reader)
 {
     RealDictionary.Unpack(reader);
 }
Exemplo n.º 8
0
 public virtual bool AddIfNotExist(object key, object value)
 {
     return(RealDictionary.AddIfNotExist(key, value));
 }
Exemplo n.º 9
0
 public virtual bool Contains(object key)
 {
     return(RealDictionary.Contains(key));
 }
Exemplo n.º 10
0
 public virtual void Flush()
 {
     RealDictionary.Flush();
 }
Exemplo n.º 11
0
 public virtual IPersistent GetValue(object key, IPersistent target)
 {
     return(RealDictionary.GetValue(key, target));
 }
Exemplo n.º 12
0
 public virtual void Unpack(IInternalPersistent parent, System.IO.BinaryReader reader)
 {
     RealDictionary.Unpack(parent, reader);
 }
Exemplo n.º 13
0
 public virtual void Open()
 {
     RealDictionary.Open();
 }
Exemplo n.º 14
0
 public virtual void Pack(IInternalPersistent parent, System.IO.BinaryWriter writer)
 {
     RealDictionary.Pack(parent, writer);
 }
Exemplo n.º 15
0
 public virtual IInternalPersistent GetParent(Type parentType)
 {
     return(RealDictionary.GetParent(parentType));
 }
Exemplo n.º 16
0
 public virtual int OnMaxCapacity(int countOfBlocksUnloadToDisk)
 {
     return(RealDictionary.OnMaxCapacity(countOfBlocksUnloadToDisk));
 }
Exemplo n.º 17
0
 public virtual bool Search(object key, bool goToFirstInstance)
 {
     return(RealDictionary.Search(key, goToFirstInstance));
 }
Exemplo n.º 18
0
 public virtual bool MovePrevious()
 {
     return(RealDictionary.MovePrevious());
 }
Exemplo n.º 19
0
 public virtual void Add(object key, object value)
 {
     RealDictionary.Add(key, value);
 }
Exemplo n.º 20
0
 public virtual bool MoveLast()
 {
     return(RealDictionary.MoveLast());
 }
Exemplo n.º 21
0
 public virtual void Clear()
 {
     RealDictionary.Clear();
 }
Exemplo n.º 22
0
 public virtual void CopyTo(Array array, int index)
 {
     RealDictionary.CopyTo(array, index);
 }
Exemplo n.º 23
0
 public virtual void Remove(object key)
 {
     RealDictionary.Remove(key);
 }
Exemplo n.º 24
0
 public virtual bool Query(QueryExpression[] keys, out QueryResult[] values)
 {
     return(RealDictionary.Query(keys, out values));
 }
Exemplo n.º 25
0
 public virtual void Pack(System.IO.BinaryWriter writer)
 {
     RealDictionary.Pack(writer);
 }
Exemplo n.º 26
0
 public virtual void OnCommit()
 {
     RealDictionary.OnCommit();
 }
Exemplo n.º 27
0
 public virtual IEnumerator GetEnumerator()
 {
     return(RealDictionary.GetEnumerator());
 }
Exemplo n.º 28
0
 public virtual void OnRollback()
 {
     RealDictionary.OnRollback();
 }
Exemplo n.º 29
0
 public virtual void Initialize(File.IFile file)
 {
     RealDictionary.Initialize(file);
 }
Exemplo n.º 30
0
 public virtual IPersistent GetCurrentValue(IPersistent target)
 {
     return(RealDictionary.GetCurrentValue(target));
 }