| 278 | } |
| 279 | |
| 280 | int Base :: BroadcastMessageToTempNode(const PaxosMsg & oPaxosMsg, const int iSendType) |
| 281 | { |
| 282 | string sBuffer; |
| 283 | int ret = PackMsg(oPaxosMsg, sBuffer); |
| 284 | if (ret != 0) |
| 285 | { |
| 286 | return ret; |
| 287 | } |
| 288 | |
| 289 | return m_poMsgTransport->BroadcastMessageTempNode(m_poConfig->GetMyGroupIdx(), sBuffer, iSendType); |
| 290 | } |
| 291 | |
| 292 | /////////////////////////// |
| 293 |
nothing calls this directly
no outgoing calls
no test coverage detected