Trait AsyncTruncateSinkWriter

Source
pub trait AsyncTruncateSinkWriter: Send + 'static {
    type DeliveryFuture: TryFuture<Ok = (), Error = SinkError> + Unpin + Send + 'static = Ready<Result<(), SinkError>>;

    // Required method
    fn write_chunk<'a>(
        &'a mut self,
        chunk: StreamChunk,
        add_future: DeliveryFutureManagerAddFuture<'a, Self::DeliveryFuture>,
    ) -> impl Future<Output = Result<()>> + Send + 'a;

    // Provided method
    fn barrier(
        &mut self,
        _is_checkpoint: bool,
    ) -> impl Future<Output = Result<()>> + Send + '_ { ... }
}

Provided Associated Types§

Source

type DeliveryFuture: TryFuture<Ok = (), Error = SinkError> + Unpin + Send + 'static = Ready<Result<(), SinkError>>

Required Methods§

Source

fn write_chunk<'a>( &'a mut self, chunk: StreamChunk, add_future: DeliveryFutureManagerAddFuture<'a, Self::DeliveryFuture>, ) -> impl Future<Output = Result<()>> + Send + 'a

Provided Methods§

Source

fn barrier( &mut self, _is_checkpoint: bool, ) -> impl Future<Output = Result<()>> + Send + '_

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§