Type Alias PublisherError
Source pub type PublisherError = ProcessingError;
pub enum PublisherError {
Retryable(Error),
NonRetryable(Error),
Connection(Error),
}
A transient error occurred. The operation should be retried.
A permanent error occurred. The operation should not be retried.
A connection-level error occurred. Used to signal broker disconnects, etc.