1源程序清单关键函数代码:1.void Raft::Start(Op command, int* newLogIndex, int* newLogTerm, bool* isLeader) { 2. std::lock_guard lg1(m_mtx); 3. // m_mtx.lock(); 4. // Defer ec1([this]()->void { 5. // m_mtx.unlock(); 6. // }); 7. if (m_status != Leader) { 8. DPrintf("[func-Start-rf{%d}] is not leader"); 9. *newLogIndex = -1; 10. *newLogTerm = -1; 11. *isLeader = false; 12. return; 13. } 14. 15. raftRpcProctoc::LogEntry newLogEntry; 16. newLogEntry.set_comma...
发表评论取消回复