Basic time-weighted binning

This commit is contained in:
Dominik Werder
2021-09-03 12:46:54 +02:00
parent 09b671b8f0
commit d9fe5259bd
28 changed files with 363 additions and 94 deletions

View File

@@ -1,8 +1,19 @@
use bytes::BytesMut;
pub mod binnedbinary;
pub mod binnedjson;
pub mod events;
pub mod timeweightedjson;
use bytes::BytesMut;
use err::Error;
use std::future::Future;
fn run_test<F>(f: F)
where
F: Future<Output = Result<(), Error>>,
{
std::env::set_current_dir("..").unwrap();
taskrun::run(f).unwrap();
}
#[test]
fn bufs() {