Refactor (WIP) the event fetch pipeline

This commit is contained in:
Dominik Werder
2022-09-01 18:53:00 +02:00
parent 904faeffa3
commit 4a3f8986fe
28 changed files with 3239 additions and 239 deletions

View File

@@ -13,11 +13,11 @@ serde_json = "1.0"
serde_cbor = "0.11.1"
erased-serde = "0.3"
bincode = "1.3.3"
bytes = "1.0.1"
num-traits = "0.2.14"
tokio = { version = "1.7.1", features = ["fs"] }
chrono = { version = "0.4.19", features = ["serde"] }
crc32fast = "1.2.1"
bytes = "1.2.1"
num-traits = "0.2.15"
chrono = { version = "0.4.22", features = ["serde"] }
crc32fast = "1.3.2"
tokio = { version = "1.20.1", features = ["rt-multi-thread", "io-util", "net", "time", "sync", "fs"] }
err = { path = "../err" }
items_proc = { path = "../items_proc" }
netpod = { path = "../netpod" }

View File

@@ -1,11 +0,0 @@
pub enum ConnStatus {}
pub struct ConnStatusEvent {
ts: u64,
status: ConnStatus,
}
pub enum ChannelEvents {
Status(ConnStatus),
Data(),
}

View File

@@ -1,5 +1,4 @@
pub mod binnedevents;
pub mod binnernew;
pub mod binsdim0;
pub mod binsdim1;
pub mod eventsitem;