CustomBackend

Struct CustomBackend 

Source
pub struct CustomBackend<Args, DB, Fetch, Sink, IdType, Codec = IdentityCodec, Config = ()> { /* private fields */ }
Expand description

A highly customizable backend for integration with any persistence engine

This backend allows you to define how tasks are fetched from and persisted to your storage, meaning you can use it to integrate with existing systems.

§Example

let backend = BackendBuilder::new()
    .database(my_db)
    .fetcher(my_fetcher_fn)
    .sink(my_sink_fn)
    .build()
    .unwrap();

§Features

FeatureStatusDescription
TaskSinkAbility to push new tasks
SerializationSerialization support for arguments
FetchByIdAllow fetching a task by its ID
RegisterWorker⚠️Allow registering a worker with the backend
PipeExt✅ ❗Allow other backends to pipe to this backend
MakeShared⚠️Share the same CustomBackend across multiple workers
Workflow⚠️Flexible enough to support workflows
WaitForCompletion⚠️Wait for tasks to complete without blocking
ResumeByIdResume a task by its ID
ResumeAbandonedResume abandoned tasks
ListWorkers⚠️List all workers registered with the backend
ListTasks⚠️List all tasks in the backend

Key: ✅ : Supported | ⚠️ : Not implemented | ❌ : Not Supported | ❗ Limited support

Examples:

Trait Implementations§

Source§

impl<Args, DB, Fetch, Sink, IdType: Clone, E, Ctx: Default, Encode, Config> Backend<Args> for CustomBackend<Args, DB, Fetch, Sink, IdType, Encode, Config>
where Fetch: Stream<Item = Result<Option<Task<Encode::Compact, Ctx, IdType>>, E>> + Send + 'static, Encode: Codec<Args> + Send + 'static, Encode::Error: Into<BoxDynError>, E: Into<BoxDynError>,

Source§

type IdType = IdType

The type used to uniquely identify tasks.
Source§

type Context = Ctx

Context associated with each task.
Source§

type Error = Box<dyn Error + Sync + Send>

The error type returned by backend operations
Source§

type Stream = Pin<Box<dyn Stream<Item = Result<Option<Task<Args, Ctx, IdType>>, Box<dyn Error + Sync + Send>>> + Send>>

A stream of tasks provided by the backend.
Source§

type Codec = Encode

The codec used for serialization/deserialization of tasks.
Source§

type Beat = Pin<Box<dyn Stream<Item = Result<(), <CustomBackend<Args, DB, Fetch, Sink, IdType, Encode, Config> as Backend<Args>>::Error>> + Send>>

A stream representing heartbeat signals.
Source§

type Layer = Identity

The type representing backend middleware layer.
Source§

fn heartbeat(&self, _: &WorkerContext) -> Self::Beat

Returns a heartbeat stream for the given worker.
Source§

fn middleware(&self) -> Self::Layer

Returns the backend’s middleware layer.
Source§

fn poll(self, worker: &WorkerContext) -> Self::Stream

Polls the backend for tasks for the given worker.
Source§

impl<Args, DB, Fetch, Sink, IdType, Codec, Config> Clone for CustomBackend<Args, DB, Fetch, Sink, IdType, Codec, Config>
where DB: Clone, Config: Clone,

Source§

fn clone(&self) -> Self

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
Source§

impl<Args, DB, Fetch, Sink, IdType, Codec, Config> Debug for CustomBackend<Args, DB, Fetch, Sink, IdType, Codec, Config>
where DB: Debug, Config: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<Args, Ctx, IdType, DB, Fetch, S, Codec, Config> Sink<Task<Args, Ctx, IdType>> for CustomBackend<Args, DB, Fetch, S, IdType, Codec, Config>
where S: Sink<Task<Args, Ctx, IdType>>,

Source§

type Error = <S as Sink<Task<Args, Ctx, IdType>>>::Error

The type of value produced by the sink when an error occurs.
Source§

fn poll_ready( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>

Attempts to prepare the Sink to receive a value. Read more
Source§

fn start_send( self: Pin<&mut Self>, item: Task<Args, Ctx, IdType>, ) -> Result<(), Self::Error>

Begin the process of sending a value to the sink. Each call to this function must be preceded by a successful call to poll_ready which returned Poll::Ready(Ok(())). Read more
Source§

fn poll_flush( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>

Flush any remaining output from this sink. Read more
Source§

fn poll_close( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>

Flush any remaining output and close this sink, if necessary. Read more
Source§

impl<'pin, Args, DB, Fetch, Sink, IdType, Codec, Config> Unpin for CustomBackend<Args, DB, Fetch, Sink, IdType, Codec, Config>
where PinnedFieldsOf<__CustomBackend<'pin, Args, DB, Fetch, Sink, IdType, Codec, Config>>: Unpin,

Auto Trait Implementations§

§

impl<Args, DB, Fetch, Sink, IdType, Codec, Config> Freeze for CustomBackend<Args, DB, Fetch, Sink, IdType, Codec, Config>
where DB: Freeze, Sink: Freeze, Config: Freeze,

§

impl<Args, DB, Fetch, Sink, IdType, Codec = IdentityCodec, Config = ()> !RefUnwindSafe for CustomBackend<Args, DB, Fetch, Sink, IdType, Codec, Config>

§

impl<Args, DB, Fetch, Sink, IdType, Codec, Config> Send for CustomBackend<Args, DB, Fetch, Sink, IdType, Codec, Config>
where DB: Send, Sink: Send, Config: Send, Args: Send, IdType: Send, Codec: Send,

§

impl<Args, DB, Fetch, Sink, IdType, Codec, Config> Sync for CustomBackend<Args, DB, Fetch, Sink, IdType, Codec, Config>
where DB: Sync, Sink: Sync, Config: Sync, Args: Sync, IdType: Sync, Codec: Sync,

§

impl<Args, DB, Fetch, Sink, IdType, Codec = IdentityCodec, Config = ()> !UnwindSafe for CustomBackend<Args, DB, Fetch, Sink, IdType, Codec, Config>

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> 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, Item> SinkExt<Item> for T
where T: Sink<Item> + ?Sized,

Source§

fn with<U, Fut, F, E>(self, f: F) -> With<Self, Item, U, Fut, F>
where F: FnMut(U) -> Fut, Fut: Future<Output = Result<Item, E>>, E: From<Self::Error>, Self: Sized,

Composes a function in front of the sink. Read more
Source§

fn with_flat_map<U, St, F>(self, f: F) -> WithFlatMap<Self, Item, U, St, F>
where F: FnMut(U) -> St, St: Stream<Item = Result<Item, Self::Error>>, Self: Sized,

Composes a function in front of the sink. Read more
Source§

fn sink_map_err<E, F>(self, f: F) -> SinkMapErr<Self, F>
where F: FnOnce(Self::Error) -> E, Self: Sized,

Transforms the error returned by the sink.
Source§

fn sink_err_into<E>(self) -> SinkErrInto<Self, Item, E>
where Self: Sized, Self::Error: Into<E>,

Map this sink’s error to a different error type using the Into trait. Read more
Source§

fn buffer(self, capacity: usize) -> Buffer<Self, Item>
where Self: Sized,

Adds a fixed-size buffer to the current sink. Read more
Source§

fn close(&mut self) -> Close<'_, Self, Item>
where Self: Unpin,

Close the sink.
Source§

fn fanout<Si>(self, other: Si) -> Fanout<Self, Si>
where Self: Sized, Item: Clone, Si: Sink<Item, Error = Self::Error>,

Fanout items to multiple sinks. Read more
Source§

fn flush(&mut self) -> Flush<'_, Self, Item>
where Self: Unpin,

Flush the sink, processing all pending items. Read more
Source§

fn send(&mut self, item: Item) -> Send<'_, Self, Item>
where Self: Unpin,

A future that completes after the given item has been fully processed into the sink, including flushing. Read more
Source§

fn feed(&mut self, item: Item) -> Feed<'_, Self, Item>
where Self: Unpin,

A future that completes after the given item has been received by the sink. Read more
Source§

fn send_all<'a, St>(&'a mut self, stream: &'a mut St) -> SendAll<'a, Self, St>
where St: TryStream<Ok = Item, Error = Self::Error> + Stream + Unpin + ?Sized, Self: Unpin,

A future that completes after the given stream has been fully processed into the sink, including flushing. Read more
Source§

fn left_sink<Si2>(self) -> Either<Self, Si2>
where Si2: Sink<Item, Error = Self::Error>, Self: Sized,

Wrap this sink in an Either sink, making it the left-hand variant of that Either. Read more
Source§

fn right_sink<Si1>(self) -> Either<Si1, Self>
where Si1: Sink<Item, Error = Self::Error>, Self: Sized,

Wrap this stream in an Either stream, making it the right-hand variant of that Either. Read more
Source§

fn poll_ready_unpin( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>
where Self: Unpin,

A convenience method for calling Sink::poll_ready on Unpin sink types.
Source§

fn start_send_unpin(&mut self, item: Item) -> Result<(), Self::Error>
where Self: Unpin,

A convenience method for calling Sink::start_send on Unpin sink types.
Source§

fn poll_flush_unpin( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>
where Self: Unpin,

A convenience method for calling Sink::poll_flush on Unpin sink types.
Source§

fn poll_close_unpin( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>
where Self: Unpin,

A convenience method for calling Sink::poll_close on Unpin sink types.
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<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