Interface ICacheManager<TInput, TCache>
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
public interface ICacheManager<TInput, TCache>
Type Parameters
Name | Description |
---|
TInput | |
TCache | |
Properties
Dict
Declaration
IDictionary<object, TCache> Dict { get; }
Property Value
Type | Description |
---|
System.Collections.Generic.IDictionary<TKey, TValue><object, TCache> | |
GetCacheUniqueKeyFunc
Declaration
Func<TCache, object> GetCacheUniqueKeyFunc { get; set; }
Property Value
Type | Description |
---|
System.Func<T, TResult><TCache, object> | |
Declaration
Func<TInput, object> GetInputUniqueKeyFunc { get; set; }
Property Value
Type | Description |
---|
System.Func<T, TResult><TInput, object> | |
Records
Declaration
IEnumerable<TCache> Records { get; }
Property Value
Type | Description |
---|
System.Collections.Generic.IEnumerable<T><TCache> | |
Methods
Add(TInput)
Declaration
Parameters
Type | Name | Description |
---|
TInput | row | |
Add(TInput[])
Declaration
Parameters
Type | Name | Description |
---|
TInput[] | batch | |
Contains(TInput)
Declaration
bool Contains(TInput row)
Parameters
Type | Name | Description |
---|
TInput | row | |
Returns
Contains(TInput[])
Declaration
bool Contains(TInput[] batch)
Parameters
Type | Name | Description |
---|
TInput[] | batch | |
Returns
Init()
Declaration