Compactor defines the necessary functions for performing compaction of log segments.
| 12 | // Compactor defines the necessary functions for performing compaction of |
| 13 | // log segments. |
| 14 | type Compactor interface { |
| 15 | Compact(uint64, []*Segment) |
| 16 | } |
| 17 | |
| 18 | var ( |
| 19 | _ Compactor = &NamespaceCompactor{} |
nothing calls this directly
no outgoing calls
no test coverage detected