pub fn init_worker_for_parallel(config: &WebhookConfig, worker_count: u8)Expand description
Initialize the global webhook worker with capacity scaled for parallel execution. Call this instead of relying on implicit init when running in parallel mode.
The effective capacity is calculated as: base_capacity * max(1, worker_count * parallel_queue_multiplier)
This provides a larger queue buffer for parallel mode where multiple workers may send webhooks concurrently while the delivery thread is blocked on slow endpoints.