(AppendEntries r)
| 387 | } |
| 388 | |
| 389 | private long processAppendEntries(AppendEntries r) throws Exception { |
| 390 | lock(); |
| 391 | try { |
| 392 | return logSequence.followerOnAppendEntries(r); |
| 393 | } finally { |
| 394 | unlock(); |
| 395 | } |
| 396 | } |
| 397 | |
| 398 | private long processInstallSnapshot(InstallSnapshot r) throws Exception { |
| 399 | lock(); |
nothing calls this directly
no test coverage detected