AsyncInternalJobService

Trait AsyncInternalJobService 

Source
pub trait AsyncInternalJobService {
    // Required method
    fn submit_jobs(
        &self,
        auth_: BearerToken,
        request: SubmitJobsRequest,
    ) -> impl Future<Output = Result<SubmitJobsResponse, Error>> + Send;
}
Expand description

The Internal Job Service is responsible for running jobs for checklist executions.

Required Methods§

Source

fn submit_jobs( &self, auth_: BearerToken, request: SubmitJobsRequest, ) -> impl Future<Output = Result<SubmitJobsResponse, Error>> + Send

Runs the requested job specs.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§