2025-03-17 14:23:48 +08:00
|
|
|
|
using JiShe.CollectBus.IotSystems.MessageIssueds;
|
|
|
|
|
|
using JiShe.CollectBus.IotSystems.MessageReceiveds;
|
2025-03-20 16:40:27 +08:00
|
|
|
|
using JiShe.CollectBus.IotSystems.MeterReadingRecords;
|
2025-04-19 00:30:58 +08:00
|
|
|
|
using JiShe.CollectBus.Kafka.Internal;
|
2025-03-20 16:40:27 +08:00
|
|
|
|
using System.Collections.Generic;
|
2025-03-17 14:23:48 +08:00
|
|
|
|
using System.Threading.Tasks;
|
2025-03-12 09:58:37 +08:00
|
|
|
|
using Volo.Abp.Application.Services;
|
|
|
|
|
|
|
|
|
|
|
|
namespace JiShe.CollectBus.Subscribers
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 定时抄读任务消息订阅
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public interface IWorkerSubscriberAppService : IApplicationService
|
|
|
|
|
|
{
|
2025-03-13 10:51:16 +08:00
|
|
|
|
|
|
|
|
|
|
#region 电表消息采集
|
2025-03-20 16:40:27 +08:00
|
|
|
|
|
2025-03-12 09:58:37 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 1分钟采集电表数据下行消息消费订阅
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
2025-04-23 16:17:29 +08:00
|
|
|
|
Task<ISubscribeAck> AmmeterScheduledMeterOneMinuteReadingIssuedEvent(MeterReadingTelemetryPacketInfo issuedEventMessage);
|
2025-03-12 09:58:37 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 5分钟采集电表数据下行消息消费订阅
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
2025-04-23 16:17:29 +08:00
|
|
|
|
Task<ISubscribeAck> AmmeterScheduledMeterFiveMinuteReadingIssuedEvent(MeterReadingTelemetryPacketInfo issuedEventMessage);
|
2025-03-12 09:58:37 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 15分钟采集电表数据下行消息消费订阅
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
2025-04-23 16:17:29 +08:00
|
|
|
|
Task<ISubscribeAck> AmmeterScheduledMeterFifteenMinuteReadingIssuedEvent(MeterReadingTelemetryPacketInfo issuedEventMessage);
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 电表自动阀控下行消息消费订阅
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
Task<ISubscribeAck> AmmeterScheduledAutoValveControl(MeterReadingTelemetryPacketInfo issuedEventMessage);
|
2025-03-13 10:51:16 +08:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
#region 水表消息采集
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 1分钟采集水表数据下行消息消费订阅
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
2025-04-23 16:17:29 +08:00
|
|
|
|
Task<ISubscribeAck> WatermeterSubscriberWorkerAutoReadingIssuedEvent(MeterReadingTelemetryPacketInfo issuedEventMessage);
|
2025-04-14 16:41:41 +08:00
|
|
|
|
|
2025-03-13 10:51:16 +08:00
|
|
|
|
#endregion
|
2025-03-12 09:58:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|