| 123456789101112131415 |
- using System.Threading.Tasks;
- using WeEngine;
- using WeEngine.Enum;
- namespace WeApp.CommonManager.MqttClient
- {
- public interface IWeAppMsgClientManager
- {
- string ClientId { get; set; }
- Task SendMessage(WeMsg msg);
- Task SendMessage(WeMsg msg, MessageType type);
- Task SendMessage(WeMsg msg, MessageType type, string clientId);
- }
- }
|