sakurs-core 0.2.0

High-performance sentence boundary detection using Delta-Stack Monoid algorithm
Documentation
//! Application layer for orchestrating text processing
//!
//! This module provides the coordination layer between the pure domain logic
//! and external adapters, handling concerns like parallel processing, chunking,
//! and performance optimization.
//!
//! # Architecture
//!
//! The application layer implements the Use Case layer in hexagonal architecture,
//! orchestrating domain operations without containing business logic itself.
//! It handles:
//!
//! - Text chunking for efficient parallel processing
//! - Thread pool management and parallel execution
//! - Cross-chunk boundary resolution
//! - Performance optimization and caching
//!
//! # Example
//!
//! ```rust
//! use sakurs_core::{SentenceProcessor, Input};
//!
//! let processor = SentenceProcessor::new();
//!
//! let text = "This is a long text. It will be processed in parallel.";
//! let result = processor.process(Input::from_text(text)).unwrap();
//! ```

pub(crate) mod chunking;
pub mod config;
pub mod delta_stack;
pub mod execution_mode;

pub use config::ProcessorConfig;
pub use delta_stack::{DeltaStackProcessor, DeltaStackResult};
pub use execution_mode::ExecutionMode;