Skip to main content

Jobs

Struct Jobs 

Source
pub struct Jobs { /* private fields */ }
Expand description

Primary entry point for interacting with the Job crate. Provides APIs to register job handlers, manage configuration, and control scheduling and execution.

Implementations§

Source§

impl Jobs

Source

pub async fn init(config: JobSvcConfig) -> Result<Self, JobError>

Initialize the service using a JobSvcConfig for connection and runtime settings.

Source

pub async fn start_poll(&mut self) -> Result<(), JobError>

Start the background poller that fetches and dispatches jobs from Postgres.

Call this only after registering every job initializer. The call consumes the internal registry; attempting to register additional initializers or starting the poller again afterwards will panic with Registry has been consumed by executor.

§Errors

Returns JobError::Sqlx if the poller cannot initialise its database listeners or supporting tasks.

§Panics

Panics if invoked more than once, or if Jobs::add_initializer is called after the poller has started.

§Examples

Register any initializers and then start the poller:

use job::{
    Jobs, JobSvcConfig, Job, JobId, JobInitializer, JobRunner, JobType, JobCompletion,
    CurrentJob, JobSpawner
};
use job::error::JobError;
use async_trait::async_trait;
use serde::{Serialize, Deserialize};
use sqlx::postgres::PgPoolOptions;
use std::error::Error;

#[derive(Debug, Serialize, Deserialize)]
struct MyConfig {
    value: i32,
}

struct MyInitializer;

impl JobInitializer for MyInitializer {
    type Config = MyConfig;

    fn job_type(&self) -> JobType {
        JobType::new("example")
    }

    fn init(&self, _job: &Job, _: JobSpawner<Self::Config>) -> Result<Box<dyn JobRunner>, Box<dyn Error>> {
        Ok(Box::new(MyRunner))
    }
}

struct MyRunner;

#[async_trait]
impl JobRunner for MyRunner {
    async fn run(
        &self,
        _current_job: CurrentJob,
    ) -> Result<JobCompletion, Box<dyn Error>> {
        Ok(JobCompletion::Complete)
    }
}

let pool = PgPoolOptions::new()
    .connect_lazy("postgres://postgres:password@localhost/postgres")?;
let config = JobSvcConfig::builder().pool(pool).build().unwrap();
let mut jobs = Jobs::init(config).await?;

// Registration returns a type-safe spawner
let spawner: JobSpawner<MyConfig> = jobs.add_initializer(MyInitializer);

jobs.start_poll().await?;

// Use the spawner to create jobs
spawner.spawn(JobId::new(), MyConfig { value: 42 }).await?;

Calling start_poll again, or attempting to register a new initializer afterwards, results in a panic:

use job::{
    Jobs, JobSvcConfig, Job, JobInitializer, JobRunner, JobType, JobCompletion, CurrentJob,
    JobSpawner,
};
use job::error::JobError;
use async_trait::async_trait;
use serde::{Serialize, Deserialize};
use sqlx::postgres::PgPoolOptions;
use std::error::Error;

#[derive(Debug, Serialize, Deserialize)]
struct MyConfig {
    value: i32,
}

struct MyInitializer;

impl JobInitializer for MyInitializer {
    type Config = MyConfig;

    fn job_type(&self) -> JobType {
        JobType::new("example")
    }

    fn init(&self, _job: &Job, _spawner: JobSpawner<Self::Config>) -> Result<Box<dyn JobRunner>, Box<dyn Error>> {
        Ok(Box::new(MyRunner))
    }
}

struct MyRunner;

#[async_trait]
impl JobRunner for MyRunner {
    async fn run(
        &self,
        _current_job: CurrentJob,
    ) -> Result<JobCompletion, Box<dyn Error>> {
        Ok(JobCompletion::Complete)
    }
}

let pool = PgPoolOptions::new()
    .connect_lazy("postgres://postgres:password@localhost/postgres")?;
let config = JobSvcConfig::builder().pool(pool).build().unwrap();
let mut jobs = Jobs::init(config).await?;

let _spawner = jobs.add_initializer(MyInitializer);

jobs.start_poll().await?;

// Panics with "Registry has been consumed by executor".
// jobs.start_poll().await.unwrap();

// Also panics because the registry moved into the poller.
// jobs.add_initializer(MyInitializer);
Source

pub fn add_initializer<I: JobInitializer>( &mut self, initializer: I, ) -> JobSpawner<I::Config>

Register a JobInitializer and return a JobSpawner for creating jobs.

§Examples
let spawner = jobs.add_initializer(MyInitializer);
spawner.spawn(JobId::new(), MyConfig { value: 42 }).await?;
§Panics

Panics if called after start_poll.

Source

pub async fn find(&self, id: JobId) -> Result<Job, JobError>

Fetch the current snapshot of a job entity by identifier.

Source

pub fn clock(&self) -> &ClockHandle

Returns a reference to the clock used by this job service.

Source

pub async fn shutdown(&self) -> Result<(), JobError>

Gracefully shut down the job poller.

This method is idempotent and can be called multiple times safely. It will send a shutdown signal to all running jobs, wait briefly for them to complete, and reschedule any jobs still running.

If not called manually, shutdown will be automatically triggered when the Jobs instance is dropped.

Trait Implementations§

Source§

impl Clone for Jobs

Source§

fn clone(&self) -> Jobs

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl Freeze for Jobs

§

impl !RefUnwindSafe for Jobs

§

impl Send for Jobs

§

impl Sync for Jobs

§

impl Unpin for Jobs

§

impl !UnwindSafe for Jobs

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FutureExt for T

Source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more