pub trait ActiveSessionProxyInterface: Send + Sync {
    type WatchActiveSessionResponseFut: Future<Output = Result<Option<ClientEnd<SessionControlMarker>>, Error>> + Send;

    // Required method
    fn watch_active_session(&self) -> Self::WatchActiveSessionResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§