pub trait AdminInterfaceApi: 'static + Send + Sync + Clone {
    fn handle_admin_request_inner<'life0, 'async_trait>(
        &'life0 self,
        request: AdminRequest
    ) -> Pin<Box<dyn Future<Output = ConductorApiResult<AdminResponse>> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
; fn handle_admin_request<'life0, 'async_trait>(
        &'life0 self,
        request: AdminRequest
    ) -> Pin<Box<dyn Future<Output = AdminResponse> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
, { ... } }
Expand description

A trait for the interface that a Conductor exposes to the outside world to use for administering the conductor. This trait has one mock implementation and one “real” implementation

Required Methods§

Call an admin function to modify this Conductor’s behavior

Provided Methods§

Deal with error cases produced by handle_admin_request_inner

Implementors§