Class AbstractCache
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: FixAntenna.Fix.Validation.Engine.Utils.Cache
Assembly: FixAntenna.Validation.dll
Syntax
public abstract class AbstractCache : ICache<int, Field>, ICloneable
Fields
MapCache
Declaration
protected IDictionary<int, Field> MapCache
Field Value
Type | Description |
---|---|
System. |
Methods
Clone()
Declaration
public abstract object Clone()
Returns
Type | Description |
---|---|
System. |
CloneInnerFields(AbstractCache)
Declaration
public object CloneInnerFields(AbstractCache cache)
Parameters
Type | Name | Description |
---|---|---|
Abstract |
cache |
Returns
Type | Description |
---|---|
System. |
Get(Int32)
Returns value by input key.
Declaration
public virtual Field Get(int key)
Parameters
Type | Name | Description |
---|---|---|
System. |
key |
Returns
Type | Description |
---|---|
Field | Instance of value. |
Put(Int32, Field)
Puts the value by key into cache.
Declaration
public virtual void Put(int key, Field value)
Parameters
Type | Name | Description |
---|---|---|
System. |
key | |
Field | value |
Implements
System.ICloneable