Interface ICache<T, TV>
Inherited Members
System.ICloneable.Clone()
Namespace: FixAntenna.Fix.Validation.Engine.Utils.Cache
Assembly: FixAntenna.Validation.dll
Syntax
public interface ICache<T, TV> : ICloneable
Type Parameters
| Name | Description |
|---|---|
| T | |
| TV |
Methods
Get(T)
Returns value by input key.
Declaration
TV Get(T key)
Parameters
| Type | Name | Description |
|---|---|---|
| T | key | Input key. |
Returns
| Type | Description |
|---|---|
| TV | Instance of value. |
Put(T, TV)
Puts the value by key into cache.
Declaration
void Put(T key, TV value)
Parameters
| Type | Name | Description |
|---|---|---|
| T | key | Key of input value. |
| TV | value | The instance that Contains concrete value for input key. |