using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; //// //// This is here so CodeMaid doesn't reorganize this document //// namespace EgwCoreLib.Lux.Core { /// /// Configurazione costanti applicative /// public class Constants { // dati conf REDIS Cache public static readonly string BASE_HASH = "LUX"; #if false public static readonly string BASE_PATH = Directory.GetCurrentDirectory(); public static readonly string CALC_REQ_DONE = $"{BASE_HASH}:CalcRequests:Completed"; // REDIS Channels messaggi x QueueMan (verso UI/srv) public static readonly string CALC_REQ_QUEUE = $"CalcRequest"; #endif public static readonly string CALC_DONE_QUEUE = $"CalcCompleted"; } }