masterToProxyAsync forwards response from topic master to topic proxy in a fire-and-forget manner.
(msg *ClusterResp)
| 414 | // masterToProxyAsync forwards response from topic master to topic proxy |
| 415 | // in a fire-and-forget manner. |
| 416 | func (n *ClusterNode) masterToProxyAsync(msg *ClusterResp) error { |
| 417 | var unused bool |
| 418 | if c := n.callAsync("Cluster.TopicProxy", msg, &unused, nil); c.Error != nil { |
| 419 | return c.Error |
| 420 | } |
| 421 | return nil |
| 422 | } |
| 423 | |
| 424 | // route routes server message within the cluster. |
| 425 | func (n *ClusterNode) route(msg *ClusterRoute) error { |
no test coverage detected