pub trait ClientProxyInterface: Send + Sync {
    type WatchConfigurationResponseFut: Future<Output = Result<ClientWatchConfigurationResponse, Error>> + Send;

    // Required methods
    fn watch_configuration(&self) -> Self::WatchConfigurationResponseFut;
    fn shutdown(&self) -> Result<(), Error>;
}

Required Associated Types§

Required Methods§

Implementors§