示例#1
0
 public void SendFastGetLocalMessages(string loginName, Guid clientId, long afterTime) {
     if (string.IsNullOrEmpty(loginName) || clientId == Guid.Empty) {
         return;
     }
     _mq.BasicPublish(
         routingKey: WsMqKeyword.FastGetLocalMessagesRoutingKey,
         basicProperties: CreateBasicProperties(loginName, clientId),
         body: OperationMqBodyUtil.GetFastGetLocalMessagesMqSendBody(afterTime));
 }