(e: &mut ArrayEngine, audit_retain_ms: Option<i64>, now_ms: i64)
| 76 | } |
| 77 | |
| 78 | fn compact_all(e: &mut ArrayEngine, audit_retain_ms: Option<i64>, now_ms: i64) { |
| 79 | loop { |
| 80 | if !e.maybe_compact(&aid(), audit_retain_ms, now_ms).unwrap() { |
| 81 | break; |
| 82 | } |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | fn ceiling_at( |
| 87 | e: &ArrayEngine, |
no test coverage detected