using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace JT808.Gateway.Abstractions
{
public interface IJT808MsgProducer : IJT808PubSub, IDisposable
{
///
///
///
/// 设备终端号
/// 808 hex data
void ProduceAsync(string terminalNo, byte[] data);
}
}