Strategy

Trait Strategy 

Source
pub trait Strategy {
    // Required method
    fn pick(&self, value_log: &ValueLog) -> Vec<u64>;
}
Expand description

GC strategy

Required Methods§

Source

fn pick(&self, value_log: &ValueLog) -> Vec<u64>

Picks blob files based on a predicate.

Implementors§