Module parallel

Module parallel 

Source

Enums§

ProcessError
Error type for parallel processing operations

Traits§

InterleavedMultiParallelProcessor
Trait implemented for a type that processes interleaved record sets in parallel. This processor is designed primarily for interleaved files with record set “arity” greater than 2 (that is, not read pairs, but triplets, quadruplets, etc.). Though this processor should work fine with pairs, it is recommended instead to use the InterleavedParallelProcessor trait for interleaved pairs.
InterleavedMultiParallelReader
Trait for parallel processing of interleaved reads
InterleavedParallelProcessor
Trait implemented for a type that processes interleaved records in parallel
InterleavedParallelReader
Trait for parallel processing of interleaved reads
IntoProcessError
Trait for converting arbitrary errors into ProcessError
MultiParallelProcessor
Trait implemented for a type that processes arbitrary arity (up to 8) record groups in parallel. The arity here refers to how many synchronized records appear in each group. For example, single-end read files have arity 1. Paired-end read files where the _1 and _2 reads are synchronized have arity 2. Some protocols make use of multiple (>2) input files and may have 3 or more synchronized files. This trait is used to process the input from those collections of files in an appropriately synchronized way. The process_record_multi function will yield, in turn, a mutable slice to the complete set of records constituting an specific group.
MultiParallelReader
Trait for parallel processing of fixed-arity read sets
PairedParallelProcessor
Trait implemented for a type that processes pairs of records in parallel
PairedParallelReader
Trait for parallel processing of paired reads
ParallelProcessor
Trait implemented for a type that processes records in parallel
ParallelReader

Type Aliases§

Result