pub trait DelayWatcherProxyInterface: Send + Sync {
    type WatchDelayResponseFut: Future<Output = Result<DelayWatcherWatchDelayResponse, Error>> + Send;

    // Required method
    fn watch_delay(
        &self,
        payload: &DelayWatcherWatchDelayRequest
    ) -> Self::WatchDelayResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§