LibsqlStorage

Struct LibsqlStorage 

Source
pub struct LibsqlStorage<T, C> { /* private fields */ }
Expand description

LibsqlStorage is a storage backend for apalis using libsql as the database.

Implementations§

Source§

impl<T> LibsqlStorage<T, ()>

Source

pub fn new(db: &'static Database) -> LibsqlStorage<T, JsonCodec<CompactType>>

Create a new LibsqlStorage with default JSON codec

Source

pub fn new_with_config( db: &'static Database, config: Config, ) -> LibsqlStorage<T, JsonCodec<CompactType>>

Create a new LibsqlStorage with custom config

Source§

impl<T, C> LibsqlStorage<T, C>

Source

pub fn db(&self) -> &'static Database

Get the database reference

Source

pub fn config(&self) -> &Config

Get the config

Source

pub async fn setup(&self) -> Result<(), LibsqlError>

Setup the database schema by running migrations

Source

pub fn with_codec<D>(self) -> LibsqlStorage<T, D>

Change the codec used for serialization/deserialization

Source§

impl<Args, Decode> LibsqlStorage<Args, Decode>
where Args: Send + 'static + Unpin, Decode: Codec<Args, Compact = CompactType> + 'static + Send, Decode::Error: Error + Send + Sync + 'static,

Source

pub fn poll_default( self, worker: &WorkerContext, ) -> impl Stream<Item = Result<Option<LibsqlTask<CompactType>>, LibsqlError>> + Send + 'static

Poll for tasks using the default polling strategy

Source

pub async fn ack<Res>( &mut self, task_id: &Ulid, result: Result<Res, BoxDynError>, ) -> Result<(), LibsqlError>
where Res: Serialize + Send,

Acknowledge a task completion

Trait Implementations§

Source§

impl<Args, Decode> Backend for LibsqlStorage<Args, Decode>
where Args: Send + 'static + Unpin, Decode: Codec<Args, Compact = CompactType> + 'static + Send, Decode::Error: Error + Send + Sync + 'static,

Source§

type Args = Args

The type of arguments the backend handles.
Source§

type IdType = Ulid

The type used to uniquely identify tasks.
Source§

type Context = SqlContext

Context associated with each task.
Source§

type Error = LibsqlError

The error type returned by backend operations
Source§

type Stream = Pin<Box<dyn Stream<Item = Result<Option<Task<Args, SqlContext, Ulid>>, LibsqlError>> + Send>>

A stream of tasks provided by the backend.
Source§

type Beat = Pin<Box<dyn Stream<Item = Result<(), LibsqlError>> + Send>>

A stream representing heartbeat signals.
Source§

type Layer = Stack<LockTaskLayer, AcknowledgeLayer<LibsqlAck>>

The type representing backend middleware layer.
Source§

fn heartbeat(&self, worker: &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, Decode> BackendExt for LibsqlStorage<Args, Decode>
where Args: Send + 'static + Unpin, Decode: Codec<Args, Compact = CompactType> + 'static + Send, Decode::Error: Error + Send + Sync + 'static,

Source§

type Codec = Decode

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

type Compact = Vec<u8>

The compact representation of task arguments.
Source§

type CompactStream = Pin<Box<dyn Stream<Item = Result<Option<Task<Vec<u8>, SqlContext, Ulid>>, LibsqlError>> + Send>>

A stream of encoded tasks provided by the backend.
Source§

fn poll_compact(self, worker: &WorkerContext) -> Self::CompactStream

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

impl<T, C> Clone for LibsqlStorage<T, C>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0§

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

Performs copy-assignment from source. Read more
Source§

impl<T, C> Debug for LibsqlStorage<T, C>

Source§

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

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

impl<Args, Codec> Sink<Task<Vec<u8>, SqlContext, Ulid>> for LibsqlStorage<Args, Codec>
where Args: Send + Sync + 'static,

Implementation of Sink for LibsqlStorage to push tasks

Source§

type Error = LibsqlError

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: LibsqlTask<CompactType>, ) -> 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, T, C> Unpin for LibsqlStorage<T, C>
where PinnedFieldsOf<__LibsqlStorage<'pin, T, C>>: Unpin,

Auto Trait Implementations§

§

impl<T, C> Freeze for LibsqlStorage<T, C>

§

impl<T, C> !RefUnwindSafe for LibsqlStorage<T, C>

§

impl<T, C> Send for LibsqlStorage<T, C>
where T: Send, C: Send,

§

impl<T, C> Sync for LibsqlStorage<T, C>
where T: Sync, C: Sync,

§

impl<T, C> !UnwindSafe for LibsqlStorage<T, C>

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

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

§

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
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
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
§

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

§

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> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.
§

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

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

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

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

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

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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