//! Bulk operations module for handling batch message processing
//!
//! This module provides functionality for bulk send and delete operations on Service Bus messages.
//! It has been refactored into several specialized components:
//!
//! - `types`: Common types and data structures
//! - `resource_guard`: RAII resource management utilities
//! - `deleter`: Message deletion operations
//! - `handler`: Main coordinator that orchestrates operations
// Re-export the main types and components
pub use ;
pub use BulkOperationHandler;
pub use ;
// Re-export resource guard utilities
pub use acquire_lock_with_timeout;