IMessageSender.cs 322 B

123456789101112
  1. using Abp.Dependency;
  2. using WeEngine.Enum;
  3. namespace WeEngine.Message
  4. {
  5. public interface IMessageSender:ITransientDependency
  6. {
  7. void SendMsg(MessageType msgType, string runningId, string targetClientId, string msg);
  8. void SendMsg(WeMessage message);
  9. void ReceiveMsg(string msgId);
  10. }
  11. }