pub trait AppInterfaceApi: 'static + Send + Sync + Clone {
    fn handle_app_request_inner<'life0, 'async_trait>(
        &'life0 self,
        request: AppRequest
    ) -> Pin<Box<dyn Future<Output = ConductorApiResult<AppResponse>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn handle_app_request<'life0, 'async_trait>(
        &'life0 self,
        request: AppRequest
    ) -> Pin<Box<dyn Future<Output = AppResponse> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
, { ... } }
Expand description

The interface that a Conductor exposes to the outside world.

Required Methods

Call an admin function to modify this Conductor’s behavior

Provided Methods

Deal with error cases produced by handle_app_request_inner

Implementors