| 12345678910111213141516171819202122232425262728 |
- using System.Threading.Tasks;
- using WeEngine;
- using WeEngine.Enum;
- namespace WeApp.CommonManager.MqttClient
- {
- public sealed class NullWeAppMsgClientManager : IWeAppMsgClientManager
- {
- public static NullWeAppMsgClientManager Instance { get; } = new NullWeAppMsgClientManager();
- public string ClientId { get; set; }
- public Task SendMessage(WeMsg msg)
- {
- throw new System.NotImplementedException();
- }
- public Task SendMessage(WeMsg msg, MessageType type)
- {
- throw new System.NotImplementedException();
- }
- public Task SendMessage(WeMsg msg, MessageType type, string clientId)
- {
- throw new System.NotImplementedException();
- }
- }
- }
|