This commit is contained in:
Dominik Werder
2024-11-06 16:29:28 +01:00
parent 1364f43f6f
commit aa126888ab
18 changed files with 287 additions and 133 deletions
+1
View File
@@ -39,5 +39,6 @@ parse = { path = "../parse" }
items_0 = { path = "../items_0" }
items_2 = { path = "../items_2" }
streams = { path = "../streams" }
streamio = { path = "../streamio" }
httpclient = { path = "../httpclient" }
bitshuffle = { path = "../bitshuffle" }
@@ -15,7 +15,7 @@ use std::future::Future;
use std::pin::Pin;
use std::task::Context;
use std::task::Poll;
use streams::tcprawclient::x_processed_event_blobs_stream_from_node;
use streamio::tcprawclient::x_processed_event_blobs_stream_from_node;
type T001<T> = Pin<Box<dyn Stream<Item = Sitemty<T>> + Send>>;
type T002<T> = Pin<Box<dyn Future<Output = Result<T001<T>, items_0::streamitem::SitemErrTy>> + Send>>;