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."); } }
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; } }