| Crates.io | fluxion-error |
| lib.rs | fluxion-error |
| version | 0.1.1 |
| created_at | 2025-11-16 07:58:27.906894+00 |
| updated_at | 2025-11-16 15:15:09.369215+00 |
| description | Error types for the Fluxion reactive streaming library |
| homepage | |
| repository | https://github.com/umbgtt10/fluxion |
| max_upload_size | |
| id | 1935315 |
| size | 32,232 |
A reactive stream processing library for Rust with temporal ordering guarantees, efficient async execution and friendly fluent API.
📊 See why Fluxion sets new standards for quality →
🔄 Rx-Style Operators: Familiar reactive programming patterns (combine_latest, with_latest_from, ordered_merge, etc.)
⏱️ Temporal Ordering: Guaranteed ordering semantics with Sequenced<T> wrapper
⚡ Async Execution: Efficient async processing with subscribe_async and subscribe_latest_async
🛡️ Type-Safe Error Handling: Comprehensive error propagation with Result types
📚 Excellent Documentation: Detailed guides, examples, and API docs
✅ Well Tested: 1,500+ tests with comprehensive coverage
Add Fluxion to your Cargo.toml:
[dependencies]
fluxion-rx = "0.1.0"
fluxion-test-utils = "0.1.0"
tokio = { version = "1.48", features = ["full"] }
futures = "0.3"
use fluxion_rx::prelude::*;
use fluxion_test_utils::Sequenced;
use futures::StreamExt;
#[tokio::main]
async fn main() {
// Define enum to hold int and bool types
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
enum Value {
Int(i32),
Bool(bool),
}
// Create int stream and bool trigger stream
let (tx_int, rx_int) = tokio::sync::mpsc::unbounded_channel::<Sequenced<Value>>();
let (tx_trigger, rx_trigger) = tokio::sync::mpsc::unbounded_channel::<Sequenced<Value>>();
let int_stream = FluxionStream::from_unbounded_receiver(rx_int);
let trigger_stream = FluxionStream::from_unbounded_receiver(rx_trigger);
let mut pipeline = int_stream.take_latest_when(trigger_stream, |_| true);
// Send int values - they will be buffered
tx_int.send(Sequenced::with_sequence(Value::Int(10), 1)).unwrap();
tx_int.send(Sequenced::with_sequence(Value::Int(20), 2)).unwrap();
tx_int.send(Sequenced::with_sequence(Value::Int(30), 3)).unwrap();
// Trigger with bool - should emit latest int value (30)
tx_trigger.send(Sequenced::with_sequence(Value::Bool(true), 4)).unwrap();
let result1 = pipeline.next().await.unwrap();
assert!(matches!(result1.get(), Value::Int(30)));
assert_eq!(result1.sequence(), 4);
// Send more int values - these will trigger emissions
tx_int.send(Sequenced::with_sequence(Value::Int(40), 5)).unwrap();
let result2 = pipeline.next().await.unwrap();
assert!(matches!(result2.get(), Value::Int(40)));
assert_eq!(result2.sequence(), 5);
tx_int.send(Sequenced::with_sequence(Value::Int(50), 6)).unwrap();
let result3 = pipeline.next().await.unwrap();
assert!(matches!(result3.get(), Value::Int(50)));
assert_eq!(result3.sequence(), 6);
}
Fluxion operators can be chained to create complex processing pipelines. Here a complete example:
Example: combine_latest -> filter_ordered - Sampling on Trigger Events
use fluxion_rx::prelude::*;
use fluxion_test_utils::Sequenced;
use futures::StreamExt;
#[tokio::test]
async fn test_take_latest_when_int_bool() {
// Define enum to hold both int and string types
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
enum Value {
Int(i32),
Str(String),
}
// Create two input streams
let (tx_int, rx_int) = tokio::sync::mpsc::unbounded_channel::<Sequenced<Value>>();
let (tx_str, rx_str) = tokio::sync::mpsc::unbounded_channel::<Sequenced<Value>>();
let int_stream = FluxionStream::from_unbounded_receiver(rx_int);
let str_stream = FluxionStream::from_unbounded_receiver(rx_str);
// Chain: combine_latest -> filter
let mut pipeline = int_stream
.combine_latest(vec![str_stream], |_| true)
.filter_ordered(|combined| {
// Keep only if first value (int) is > 50
matches!(combined.get_state()[0], Value::Int(x) if x > 50)
});
// Send initial values
tx_str.send(Sequenced::with_sequence(Value::Str("initial".into()), 1)).unwrap();
tx_int.send(Sequenced::with_sequence(Value::Int(30), 2)).unwrap(); // Filtered out (30 <= 50)
tx_int.send(Sequenced::with_sequence(Value::Int(60), 3)).unwrap(); // Passes filter (60 > 50)
tx_str.send(Sequenced::with_sequence(Value::Str("updated".into()), 4)).unwrap(); // Passes filter (int still 60)
tx_int.send(Sequenced::with_sequence(Value::Int(75), 5)).unwrap(); // Passes filter (75 > 50)
// Results: seq 3 (Int 60), seq 4 (Int 60 + Str updated), seq 5 (Int 75)
let result1 = pipeline.next().await.unwrap();
let combined1 = result1.get().get_state();
assert!(matches!(combined1[0], Value::Int(60)));
assert!(matches!(combined1[1], Value::Str(ref s) if s == "initial"));
let result2 = pipeline.next().await.unwrap();
let combined2 = result2.get().get_state();
assert!(matches!(combined2[0], Value::Int(60)));
assert!(matches!(combined2[1], Value::Str(ref s) if s == "updated"));
let result3 = pipeline.next().await.unwrap();
let combined3 = result3.get().get_state();
assert!(matches!(combined3[0], Value::Int(75)));
assert!(matches!(combined3[1], Value::Str(ref s) if s == "updated"));
}
Combining Streams:
combine_latest - Emit when any stream emits, with latest from allwith_latest_from - Sample secondary streams on primary emissionordered_merge - Merge multiple streams preserving temporal orderFiltering & Gating:
emit_when - Gate emissions based on a filter conditiontake_latest_when - Sample stream on trigger eventstake_while_with - Emit while condition holdsTransformation:
combine_with_previous - Pair consecutive valuesmap_ordered - Transform while preserving orderfilter_ordered - Filter while preserving orderSequential Processing:
use fluxion_exec::SubscribeAsyncExt;
stream
.subscribe_async(
|item, _token| async move {
process(item).await?;
Ok::<(), MyError>(())
},
None,
Some(|err| eprintln!("Error: {}", err))
)
.await?;
Latest-Value Processing (with auto-cancellation):
use fluxion_exec::SubscribeLatestAsyncExt;
stream
.subscribe_latest_async(
|item, token| async move {
expensive_operation(item, token).await?;
Ok::<(), MyError>(())
},
Some(|err| eprintln!("Error: {}", err)),
None
)
.await?;
The stream-aggregation example demonstrates production-ready patterns:
UnboundedReceiverExt for elegant type erasureCancellationTokenWhy this example matters:
into_fluxion_stream() pattern for combining heterogeneous streamsRun it with: cargo run --example stream-aggregation
Generate and browse full API documentation:
cargo doc --no-deps --open
Or for specific crates:
cargo doc --package fluxion-stream --open
cargo doc --package fluxion-exec --open
rust-toolchain.toml)# Run CI checks locally (PowerShell)
.\.ci\ci.ps1
fluxion-rx - Main crate (re-exports from other crates)fluxion-stream - Stream operators and combinatorsfluxion-exec - Execution utilities and subscriptionsfluxion-core - Core utilities and traitsfluxion-error - Error types and handlingfluxion-test-utils - Test helpers and fixturesfluxion-merge - Stream merging utilitiesfluxion-ordered-merge - Ordered merging implementation.ci/coverage.ps1 to collect code coverage locally (requires cargo-llvm-cov)Current Version: 0.1.1
See ROADMAP.md for details on the path to 1.0.0.
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
Before submitting a PR:
cargo test --workspacecargo clippy --workspace -- -D warningscargo fmt --allLicensed under the Apache License, Version 2.0. See LICENSE for details.
Inspired by ReactiveX and other reactive programming libraries, with a focus on Rust's safety and performance characteristics.
All commits and releases are GPG signed.
Key ID: 5729DA194B0929542BF79074C2A11DED229A1E51
Fingerprint: 5729 DA19 4B09 2954 2BF7 9074 C2A1 1DED 229A 1E51
Name: Umberto Gotti Email: umberto.gotti@umbertogotti.dev Twitter: https://x.com/GottiUmberto