Trait LogFlusherProxyInterface

Source
pub trait LogFlusherProxyInterface: Send + Sync {
    type WaitUntilFlushedResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn wait_until_flushed(&self) -> Self::WaitUntilFlushedResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§

Source§

impl LogFlusherProxyInterface for LogFlusherProxy

Source§

type WaitUntilFlushedResponseFut = QueryResponseFut<(), FDomainResourceDialect>