Refactor series writer

This commit is contained in:
Dominik Werder
2024-07-16 15:31:47 +02:00
parent 750eb7d8c6
commit 9ac197e755
20 changed files with 592 additions and 717 deletions

9
batchtools/src/jobchn.rs Normal file
View File

@@ -0,0 +1,9 @@
use std::marker::PhantomData;
pub struct JobChnWorker<JOB> {
_t1: PhantomData<JOB>,
}
impl<JOB> JobChnWorker<JOB> {}
//pub fn submit_and_await(job)

View File

@@ -1,3 +1,4 @@
pub mod batcher;
#[cfg(test)]
pub mod channeltest;
pub mod jobchn;