(startTs uint64)
| 274 | } |
| 275 | |
| 276 | func (o *Oracle) commitTs(startTs uint64) uint64 { |
| 277 | o.RLock() |
| 278 | defer o.RUnlock() |
| 279 | return o.commits[startTs] |
| 280 | } |
| 281 | |
| 282 | func (o *Oracle) storePending(ids *pb.AssignedIds) { |
| 283 | // Wait to finish up processing everything before start id. |
no test coverage detected