shred
v0.16.1
Esta biblioteca permite despachar sistemas, que podem ter interdependências, acesso compartilhado e exclusivo a recursos, em paralelo.
extern crate shred ;
use shred :: { DispatcherBuilder , Read , Resource , ResourceId , System , SystemData , World , Write } ;
# [ derive ( Debug , Default ) ]
struct ResA ;
# [ derive ( Debug , Default ) ]
struct ResB ;
# [ derive ( SystemData ) ] // Provided with `shred-derive` feature
struct Data < ' a > {
a : Read < ' a , ResA > ,
b : Write < ' a , ResB > ,
}
struct EmptySystem ;
impl < ' a > System < ' a > for EmptySystem {
type SystemData = Data < ' a > ;
fn run ( & mut self , bundle : Data < ' a > ) {
println ! ( "{:?}" , &*bundle.a ) ;
println ! ( "{:?}" , &*bundle.b ) ;
}
}
fn main ( ) {
let mut world = World :: empty ( ) ;
let mut dispatcher = DispatcherBuilder :: new ( )
. with ( EmptySystem , "empty" , & [ ] )
. build ( ) ;
world . insert ( ResA ) ;
world . insert ( ResB ) ;
dispatcher . dispatch ( & mut world ) ;
}
Consulte o benchmark para um exemplo maior (e útil).
1.56.1 stable
A contribuição é muito bem-vinda! Se desejar outro recurso, basta criar um problema. Você também pode ajudar se quiser; basta escolher um problema de "procura-se ajuda". Se precisar de ajuda, fique à vontade para perguntar!
Presume-se que todas as contribuições tenham licença dupla sob o MIT/Apache-2.
shred
é distribuído sob os termos da licença MIT e da licença Apache (versão 2.0).
Consulte LICENSE-APACHE e LICENSE-MIT.