32 lines
843 B
C#
Raw Normal View History

2025-04-30 12:36:54 +08:00
using JiShe.CollectBus.IotSystems.MeterReadingRecords;
2025-05-12 14:02:22 +08:00
using JiShe.CollectBus.Protocol.Dto;
2025-06-06 14:15:31 +08:00
using JiShe.ServicePro.IoTDBManagement.TableModels;
2025-04-30 12:36:54 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Channels;
using System.Threading.Tasks;
namespace JiShe.CollectBus.DataChannels
{
public static class DataChannelManage
{
/// <summary>
/// 下发任务通道
/// </summary>
public static Channel<ValueTuple<string, List<MeterReadingTelemetryPacketInfo>>> TaskDataChannel;
2025-05-12 14:02:22 +08:00
/// <summary>
/// 日志保存管道
/// </summary>
public static Channel<object> LogSaveChannel;
/// <summary>
/// 日志刷新管道
/// </summary>
public static Channel<object> LogRefreshChannel;
2025-04-30 12:36:54 +08:00
}
}