pub struct Receiver { /* private fields */ }
Expand description

The receiver part of the queue. This part is asynchronous and therefore needs an executor that will the poll the futures to completion.

Implementations

Opens a queue for reading. The access will be exclusive, based on the existence of the temporary file recv.lock inside the queue folder.

Errors

This function will return an IO error if the queue is already in use for receiving, which is indicated by a lock file. Also, any other IO error encountered while opening will be sent.

Panics

This function will panic if it is not able to set up the notification handler to watch for file changes.

Saves the receiver queue state. You do not need to use method in most circumstances, since it is automatically done on drop (yes, it will be called eve if your thread panics). However, you cawn use this function to

  1. Make periodical backups. Use an external timer implementation for this.

  2. Handle possible IO errors in logging the state of the queue to the disk after commit. The drop implementation will ignore (but log) any io errors, which may lead to data loss in an unreliable filesystem. It was implemented this way because no errors are allowed to propagate on drop and panicking will abort the program if drop is called during a panic.

Retrieves an element from the queue. The returned value is a guard that will only commit state changes to the queue when dropped.

This operation is atomic. If the returned future is not polled to completion, as, e.g., when calling select, the operation will be undone.

Panics

This function will panic if it has to start reading a new segment and it is not able to set up the notification handler to watch for file changes.

Tries to retrieve an element from the queue. The returned value is a guard that will only commit state changes to the queue when dropped.

Panics

This function will panic if it has to start reading a new segment and it is not able to set up the notification handler to watch for file changes.

Retrieves an element from the queue until a given future finishes, whichever comes first. If an element arrives first, the returned value is a guard that will only commit state changes to the queue when dropped. Otherwise, Ok(None) is returned.

This operation is atomic. If the returned future is not polled to completion, as, e.g., when calling select, the operation will be undone.

Panics

This function will panic if it has to start reading a new segment and it is not able to set up the notification handler to watch for file changes.

Removes a number of elements from the queue. The returned value is a guard that will only commit state changes to the queue when dropped.

Note

This operation is atomic in an asynchronous context. This means that you will not lose the elements if you do not await this function to completion.

Panics

This function will panic if it has to start reading a new segment and it is not able to set up the notification handler to watch for file changes.

Tries to remove a number of elements from the queue. The returned value is a guard that will only commit state changes to the queue when dropped.

Panics

This function will panic if it has to start reading a new segment and it is not able to set up the notification handler to watch for file changes.

Tries to remove a number of elements from the queue until a given future finished. The values taken from the queue will be the values that were available durng the whole execution of the future and thus less than n elements might be returned. The returned items are wrapped in a guard that will only commit state changes to the queue when dropped.

Note

This operation is atomic in an asynchronous context. This means that you will not lose the elements if you do not await this function to completion.

Panics

This function will panic if it has to start reading a new segment and it is not able to set up the notification handler to watch for file changes.

Takes a number of elements from the queue until a certain asynchronous condition is met. Use this function if you want to have fine-grained control over the contents of the receive guard.

Note that the predicate function will receive a None as the first element. This allows you to return early and leave the queue intact. The returned value is a guard that will only commit state changes to the queue when dropped.

Note

This operation is atomic in an asynchronous context. This means that you will not lose the elements if you do not await this function to completion.

Example

Receive until an empty element is received:

let recv_guard = receiver.recv_until(|element| async { element.is_empty() }).await;
Panics

This function will panic if it has to start reading a new segment and it is not able to set up the notification handler to watch for file changes.

Tries to take a number of elements from the queue until a certain synchronous condition is met. Use this function if you want to have fine-grained control over the contents of the receive guard.

Note that the predicate function will receive a None as the first element. This allows you to return early and leave the queue intact. The returned value is a guard that will only commit state changes to the queue when dropped.

Example

Try to receive until an empty element is received:

let recv_guard = receiver.try_recv_until(|element| element.is_empty());
Panics

This function will panic if it has to start reading a new segment and it is not able to set up the notification handler to watch for file changes.

Trait Implementations

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.