You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mediarepo/mediarepo-api/src/client_api/job.rs

41 lines
941 B
Rust

use crate::client_api::error::ApiResult;
use crate::client_api::IPCApi;
use crate::types::jobs::{JobType, RunJobRequest};
use bromine::context::{Context, PoolGuard, PooledContext};
use std::time::Duration;
#[derive(Clone)]
pub struct JobApi {
ctx: PooledContext,
}
impl IPCApi for JobApi {
fn namespace() -> &'static str {
"jobs"
}
fn ctx(&self) -> PoolGuard<Context> {
self.ctx.acquire()
}
}
impl JobApi {
pub fn new(ctx: PooledContext) -> Self {
Self { ctx }
}
/// Runs a job of the given type and returns when it has finished
#[tracing::instrument(level = "debug", skip(self))]
pub async fn run_job(&self, job_type: JobType) -> ApiResult<()> {
self.emit_and_get(
"run_job",
RunJobRequest {
job_type,
sync: true,
},
Some(Duration::from_secs(3600)),
)
.await
}
}