qubit-retry 0.10.4

Retry module, providing a feature-complete, type-safe retry management system with support for multiple delay strategies and event listeners
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
//! Retry event types and listener aliases.

mod attempt_failure_decision;
mod attempt_failure_listener;
mod attempt_success_listener;
mod attempt_timeout_source;
mod before_attempt_listener;
mod retry_after_hint;
mod retry_context;
mod retry_context_parts;
mod retry_error_listener;
mod retry_listeners;

pub use attempt_failure_decision::AttemptFailureDecision;
pub use attempt_failure_listener::{
    AttemptFailureListener,
    RetryScheduledListener,
};
pub use attempt_success_listener::AttemptSuccessListener;
pub use attempt_timeout_source::AttemptTimeoutSource;
pub use before_attempt_listener::BeforeAttemptListener;
pub use retry_after_hint::RetryAfterHint;
pub use retry_context::RetryContext;
pub use retry_error_listener::RetryErrorListener;

pub(crate) use retry_context_parts::RetryContextParts;
pub(crate) use retry_listeners::RetryListeners;