mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-21 14:28:43 -06:00
.
This commit is contained in:
parent
7ba5d739e7
commit
e2bec4bf2e
|
@ -13,7 +13,7 @@ struct Task<T> {
|
|||
fn task_loop<T, R>() {
|
||||
let tasks = VecDeque::<Task<T>>::new();
|
||||
loop {
|
||||
//todo
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -22,7 +22,7 @@ impl<T: 'static, R: 'static> KubiPool<T, R> {
|
|||
Self {
|
||||
callback,
|
||||
threads: (0..threads).map(|_| {
|
||||
std::thread::spawn(task_loop::<T, R>)
|
||||
std::thread::spawn(move || task_loop::<T, R>())
|
||||
}).collect(),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue