Trait AckHandler

Source
pub trait AckHandler: Stream<Item = Result<Self::Output, Self::Error>> + Unpin {
    type Output;
    type Error: Error + Send + Sync + 'static;
}
Expand description

Produces a stream of acknowledgments from an associated Publisher or Subscriber.

Required Associated Types§

Source

type Output

The type of output that the acknowledhment handler will produce when it fails.

Source

type Error: Error + Send + Sync + 'static

The type of Error that the acknowledgment handler will produce when it fails.

Implementors§