Skip to main content

ExecutionStateManagerProxyInterface

Trait ExecutionStateManagerProxyInterface 

Source
pub trait ExecutionStateManagerProxyInterface: Send + Sync {
    type GetExecutionStateDependencyTokenResponseFut: Future<Output = Result<ExecutionState, Error>> + Send;
    type AddApplicationActivityDependencyResponseFut: Future<Output = Result<ExecutionStateManagerAddApplicationActivityDependencyResult, Error>> + Send;

    // Required methods
    fn get_execution_state_dependency_token(
        &self,
    ) -> Self::GetExecutionStateDependencyTokenResponseFut;
    fn add_application_activity_dependency(
        &self,
        payload: ExecutionStateManagerAddApplicationActivityDependencyRequest,
    ) -> Self::AddApplicationActivityDependencyResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§