using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Application.Services;
namespace JiShe.CollectBus.Subscribers
{
///
/// 数据通讯通道订阅者服务
///
public interface IServiceCommunicationChannelSubscriberService:IApplicationService
{
///
/// 数据通讯通道消息消费订阅
///
///
///
Task ServiceCommunicationChannelIssuedEvent(Dictionary issuedMessage);
}
}