sequence represents write sequence number.
| 431 | |
| 432 | // sequence represents write sequence number. |
| 433 | type sequence struct { |
| 434 | leader int32 |
| 435 | seq int64 |
| 436 | } |
| 437 | |
| 438 | // CreateSequence creates a sequence number. |
| 439 | func CreateSequence(leader int32, seq int64) Log { |
nothing calls this directly
no outgoing calls
no test coverage detected