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(); } } }