We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce capability of reusing Streams.
let mut app = Application::with_conf(conf); let source_stream = app.iterator((0..1000000).map(|x| Event { id: x, data: 1.5 }), |conf| { conf.set_timestamp_extractor(|x: &Event| x.id); }); let s1 = source_stream.map(|x| x+ 10); let s2 = source_stream.flatmap(|x| 0..x);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Introduce capability of reusing Streams.
The text was updated successfully, but these errors were encountered: