| 26 | } |
| 27 | |
| 28 | type CollisionMatrix interface { |
| 29 | // split oplogs into safety segments |
| 30 | split(logs []*PartialLogWithCallback) [][]*PartialLogWithCallback |
| 31 | |
| 32 | convert(segment []*PartialLogWithCallback) []*OplogRecord |
| 33 | } |
| 34 | |
| 35 | type NoopMatrix struct{} |
| 36 |
no outgoing calls
no test coverage detected