Click or drag to resize

Generator.RunQueueCache Property

The cache with key-value pairs which is accessable for all performed tasks. The cache is never cleared by task performers, and can be used to cache information across task groups which do clear the TaskCache cache. The cache uses strings for keys.

Namespace:  SD.LLBLGen.Pro.GeneratorCore
Assembly:  SD.LLBLGen.Pro.GeneratorCore (in SD.LLBLGen.Pro.GeneratorCore.dll) Version: 5.10.0.0 (5.10.0)
Syntax
public Dictionary<string, Object> RunQueueCache { get; }

Property Value

Type: Dictionary<String, Object>

Implements

IGenerator.RunQueueCache
Remarks
Per run queue run (which can be several times, i.e. once per group), this cache is cleared.
See Also