ee043f81be
- gestione tramite REDIS CHANNEL - refresh sincrono
22 lines
574 B
C#
22 lines
574 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.Data
|
|
{
|
|
public class Constants
|
|
{
|
|
|
|
// dati conf REDIS Cache
|
|
public static readonly string BASE_HASH = "MAPO";
|
|
|
|
// REDIS KEY Dati correnti
|
|
public static readonly string CONF_MON_KEY = $"{BASE_HASH}:Conf:MonDispData";
|
|
public static readonly string ACT_MSE_DATA_KEY = $"{BASE_HASH}:Current:MSE";
|
|
public static readonly string ACT_BLINK_KEY = $"{BASE_HASH}:Current:Blink";
|
|
|
|
}
|
|
}
|