From 7ca33c3e263750916163caadbf13d4ca9321b4cc Mon Sep 17 00:00:00 2001 From: Nikaidou Haruki Date: Fri, 3 Oct 2025 21:08:22 +0900 Subject: [PATCH] Add integrated socket stream types for UDP and TCP --- ubw-sward/src/socket_stream/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ubw-sward/src/socket_stream/mod.rs b/ubw-sward/src/socket_stream/mod.rs index 3b67972..b3ffd67 100644 --- a/ubw-sward/src/socket_stream/mod.rs +++ b/ubw-sward/src/socket_stream/mod.rs @@ -32,3 +32,6 @@ pub trait StreamSward { workload: BoxedStreamWorkload, ) -> impl Future> + Send + 'static; } + +pub type IntegratedUdpSward = integrated::IntegratedSocketStreamSward; +pub type IntegratedTcpSward = integrated::IntegratedSocketStreamSward;