1 2 3 4 5 6 7 8 9
fn main() { let (_send, recv) = dfir_rs::util::unbounded_channel::<i32>(); let mut flow = dfir_rs::dfir_syntax! { x = source_stream(recv); loop { x -> batch() -> for_each(|_x: i32| {}); }; }; }