Skip to main content

PublisherError

Type Alias PublisherError 

Source
pub type PublisherError = ProcessingError;

Aliased Type§

pub enum PublisherError {
    Retryable(Error),
    NonRetryable(Error),
}

Variants§

§

Retryable(Error)

A transient error occurred. The operation should be retried.

§

NonRetryable(Error)

A permanent error occurred. The operation should not be retried.