Exemple #1
0
 public void Push(string service, FsMessage msg, int timeoutmsec = 100)
 {
     if (_busReady && msg != null)
     {
         MsgBus.Push(service, msg.ToJson(), timeoutmsec);
     }
     else
     {
         log.ErrorFormat("Msgbus or message is null.");
     }
 }
Exemple #2
0
 public void Publish(string topic, FsMessage msg)
 {
     if (_busReady && msg != null)
     {
         MsgBus.Publish(topic, msg.ToJson());
     }
     else
     {
         log.ErrorFormat("Msgbus or msg is null.");
         return;
     }
 }