32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
using JiShe.CollectBus.Common.Models;
|
|||
|
|
using JiShe.CollectBus.MessageReceiveds;
|
|||
|
|
using Volo.Abp.Application.Services;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.Subscribers
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 定时抄读任务消息订阅
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IWorkerSubscriberAppService : IApplicationService
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 1分钟采集电表数据下行消息消费订阅
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
Task ScheduledMeterOneMinuteReadingIssuedEvent(IssuedEventMessage issuedEventMessage);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 5分钟采集电表数据下行消息消费订阅
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
Task ScheduledMeterFiveMinuteReadingIssuedEvent(IssuedEventMessage issuedEventMessage);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 15分钟采集电表数据下行消息消费订阅
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
Task ScheduledMeterFifteenMinuteReadingIssuedEvent(IssuedEventMessage issuedEventMessage);
|
|||
|
|
}
|
|||
|
|
}
|