Struct interrupt_support::SqlInterruptHandle

source ·
pub struct SqlInterruptHandle { /* private fields */ }
Expand description

Interrupt operations that use SQL

Typical usage of this type:

  • Components typically create a wrapper class around an rusqlite::Connection (PlacesConnection, LoginStore, etc.)
  • The wrapper stores an Arc<SqlInterruptHandle>
  • The wrapper has a method that clones and returns that Arc. This allows passing the interrupt handle to a different thread in order to interrupt a particular operation.
  • The wrapper calls begin_interrupt_scope() at the start of each operation. The code that performs the operation periodically calls err_if_interrupted().
  • Finally, the wrapper class implements AsRef<SqlInterruptHandle> and calls register_interrupt(). This causes all operations to be interrupted when we enter shutdown mode.

Implementations§

source§

impl SqlInterruptHandle

source

pub fn new(conn: &Connection) -> Self

source

pub fn begin_interrupt_scope(&self) -> Result<SqlInterruptScope, Interrupted>

Begin an interrupt scope that will be interrupted by this handle

Returns Err(Interrupted) if we’re in shutdown mode

source

pub fn interrupt(&self)

Interrupt all interrupt scopes created by this handle

Trait Implementations§

source§

impl AsRef<SqlInterruptHandle> for SqlInterruptHandle

source§

fn as_ref(&self) -> &SqlInterruptHandle

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Debug for SqlInterruptHandle

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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

source§

fn from(t: T) -> T

Returns the argument unchanged.

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.