Implement window service

Batch out of order blobs until we have a contigious window.
This commit is contained in:
Anatoly Yakovenko
2018-04-02 19:32:58 -07:00
parent bc0dde696a
commit 5ac7df17f9
7 changed files with 592 additions and 332 deletions

View File

@@ -51,7 +51,7 @@ fn main() {
historian,
)));
eprintln!("Listening on {}", addr);
let threads = AccountantSkel::serve(skel, addr, exit.clone()).unwrap();
let threads = AccountantSkel::serve(&skel, addr, exit.clone()).unwrap();
for t in threads {
t.join().expect("join");
}