pjson-rs 0.6.0

Priority JSON Streaming Protocol - high-performance priority-based JSON streaming (requires nightly Rust)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Domain services implementing complex business logic
//!
//! These services orchestrate domain entities and value objects
//! to implement complex business workflows using Clean Architecture principles.

pub mod gat_orchestrator;
pub mod validation_service;

pub use gat_orchestrator::{
    GatOrchestratorFactory, GatStreamingOrchestrator, HealthStatus, OrchestratorConfig,
};
pub use validation_service::ValidationService;