Esempio n. 1
0
 public void SendFastGetOperationResults(string loginName, Guid clientId, long afterTime) {
     if (string.IsNullOrEmpty(loginName) || clientId == Guid.Empty) {
         return;
     }
     _mq.BasicPublish(
         routingKey: WsMqKeyword.FastGetOperationResultsRoutingKey,
         basicProperties: CreateBasicProperties(loginName, clientId),
         body: OperationMqBodyUtil.GetFastGetOperationResultsMqSendBody(afterTime));
 }