Files
lux/EgwCoreLib.Lux.Core/Constants.cs
T

30 lines
874 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//// <Auto-Generated>
//// This is here so CodeMaid doesn't reorganize this document
//// </Auto-Generated>
namespace EgwCoreLib.Lux.Core
{
/// <summary>
/// Configurazione costanti applicative
/// </summary>
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";
}
}