pub trait LeaseControlProxyInterface: Send + Sync {
    type WatchStatusResponseFut: Future<Output = Result<LeaseStatus, Error>> + Send;

    // Required method
    fn watch_status(
        &self,
        last_status: LeaseStatus
    ) -> Self::WatchStatusResponseFut;
}

Required Associated Types§

Required Methods§

source

fn watch_status(&self, last_status: LeaseStatus) -> Self::WatchStatusResponseFut

Implementors§