LASAPlatform/Infrastructure/CloudSdk/mqttmessagecenter/IMqttMessageHandler.cs

15 lines
323 B
C#
Raw Permalink Normal View History

2025-06-17 13:53:54 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Infrastructure.CloudSdk.mqttmessagecenter
{
public interface IMqttMessageHandler
{
bool CanHandle(string topic);
Task HandleAsync(string topic, string payload);
}
}