A simple library for creating and consuming async streams
Add to your Cargo.toml
bash
$ cargo add streem
Use in your application ```rust use streem::IntoStreamer;
fn fromiter(iter: impl IntoIterator
fn main() { futuresexecutor::blockon(async { let stream = std::pin::pin!(from_iter(0..10));
let mut streamer = stream.into_streamer();
while let Some(item) = streamer.next().await {
println!("Yielded {item}");
}
})
} ```
Feel free to open issues for anything you find an issue with. Please note that any contributed code will be licensed under the GPLv3.
Copyright © 2023 asonix
ActivityStreams is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
ActivityStreams is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. This file is part of ActivityStreams.
You should have received a copy of the GNU General Public License along with ActivityStreams. If not, see http://www.gnu.org/licenses/.