Struct apalis_core::layers::extensions::Extension
source · pub struct Extension<T>(pub T);Available on crate feature
extensions only.Expand description
Extension data for jobs.
forked from http::Extensions
In Context
This is commonly used to share state across jobs.
ⓘ
use apalis::{
Extension,
WorkerBuilder,
JobContext
};
use std::sync::Arc;
// Some shared state used throughout our application
struct State {
// ...
}
async fn email_service(email: Email, ctx: JobContext) {
let state: &Arc<State> = ctx.data_opt().unwrap();
}
let state = Arc::new(State { /* ... */ });
let worker = WorkerBuilder::new("tasty-avocado")
.layer(Extension(state))
.with_storage(storage.clone())
.build_fn(email_service);Tuple Fields§
§0: TTrait Implementations§
impl<T: Copy> Copy for Extension<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Extension<T>where T: RefUnwindSafe,
impl<T> Send for Extension<T>where T: Send,
impl<T> Sync for Extension<T>where T: Sync,
impl<T> Unpin for Extension<T>where T: Unpin,
impl<T> UnwindSafe for Extension<T>where T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more