[][src]Trait rucene::core::search::collector::ParallelLeafCollector

pub trait ParallelLeafCollector: Collector + Send + 'static {
    fn finish_leaf(&mut self) -> Result<()>;
}

Collector that collect parallel for a single segment.

once finished, the finish_leaf method must be called to notify to main thread.

Required methods

fn finish_leaf(&mut self) -> Result<()>

Loading content...

Implementors

impl ParallelLeafCollector for EarlyTerminatingLeafCollector[src]

impl ParallelLeafCollector for TimeoutLeafCollector[src]

impl ParallelLeafCollector for TopDocsLeafCollector[src]

fn finish_leaf(&mut self) -> Result<()>[src]

may do clean up and notify parent that leaf is ended

impl<A, B> ParallelLeafCollector for ChainedCollector<A, B> where
    A: ParallelLeafCollector,
    B: ParallelLeafCollector
[src]

Loading content...