WIP but checks

This commit is contained in:
Dominik Werder
2023-04-05 15:51:10 +02:00
parent 81298b16df
commit 32efc693f5
12 changed files with 188 additions and 28 deletions

View File

@@ -178,10 +178,10 @@ fn time_bin_02() -> Result<(), Error> {
// Then the Merge will happen always by default for backends where this is needed.
// TODO then apply the transform chain for the after-merged-stream.
let stream = stream.map(|x| {
//
on_sitemty_data!(x, |x| Ok(StreamItem::DataItem(RangeCompletableItem::Data(
let x = on_sitemty_data!(x, |x| Ok(StreamItem::DataItem(RangeCompletableItem::Data(
Box::new(x) as Box<dyn TimeBinnable>
))))
))));
x
});
let stream = Box::pin(stream);
let mut binned_stream =