Xcui Streams [PREMIUM]
client = XCUIClient( endpoint="xcui://cluster.prod.internal:9092", consistency=ConsistencyLevel.EXTREME, # Blocks until globally sequenced io_backpressure=True )
: Once configured, the add-on is available under the Video add-ons section of the Kodi interface. Technical Context: XCUI vs. XC xcui streams
At its core, an refers to a specialized type of data pipeline designed to handle eXtreme Consistency, Unification, and Input/Output (XCUI) workloads. Unlike standard streaming solutions (such as Apache Kafka or AWS Kinesis), which prioritize throughput, xcui streams are architected for environments where ordering, stateful processing, and millisecond-level determinism are non-negotiable. client = XCUIClient( endpoint="xcui://cluster
| Feature | Message Queue (e.g., RabbitMQ) | Standard Stream (e.g., Kafka) | | | :--- | :--- | :--- | :--- | | Ordering Guarantee | Per queue, weak | Per partition | Global & deterministic | | State Management | Stateless | External stores only | Embedding & checkpointed | | Backpressure Handling | Reject/publish | Limited consumer lag | Dynamic throttling & I/O control | | Replay Capability | No | Yes (log-based) | Yes, with versioning | | Latency (p99) | 10-100 ms | 5-50 ms | <2 ms deterministic | Unlike standard streaming solutions (such as Apache Kafka