[][src]Struct celery::CeleryBuilder

pub struct CeleryBuilder<B> where
    B: Broker + 'static, 
{ /* fields omitted */ }

Used to create a Celery app with a custom configuration.

Methods

impl<B> CeleryBuilder<B> where
    B: Broker + 'static, 
[src]

pub fn default_queue_name(self, queue_name: &str) -> Self[src]

Set the name of the default queue.

pub fn task_timeout(self, task_timeout: usize) -> Self[src]

Set a default timeout for tasks.

pub fn task_max_retries(self, task_max_retries: usize) -> Self[src]

Set a default maximum number of retries for tasks.

pub fn task_min_retry_delay(self, task_min_retry_delay: usize) -> Self[src]

Set a default minimum retry delay for tasks.

pub fn task_max_retry_delay(self, task_max_retry_delay: usize) -> Self[src]

Set a default maximum retry delay for tasks.

pub fn build(self) -> Celery<B>[src]

Construct a Celery app with the current configuration .

Auto Trait Implementations

impl<B> RefUnwindSafe for CeleryBuilder<B> where
    B: RefUnwindSafe

impl<B> Send for CeleryBuilder<B> where
    B: Send

impl<B> Sync for CeleryBuilder<B> where
    B: Sync

impl<B> Unpin for CeleryBuilder<B> where
    B: Unpin

impl<B> UnwindSafe for CeleryBuilder<B> where
    B: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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