Struct sp_runtime::offchain::storage_lock::StorageLock [−][src]
pub struct StorageLock<'a, L = Time> { /* fields omitted */ }
Storage based lock.
A lock that is persisted in the DB and provides the ability to guard against
concurrent access in an off-chain worker, with a defined expiry deadline
based on the concrete Lockable
implementation.
Implementations
impl<'a, L: Lockable + Default> StorageLock<'a, L>
[src]
impl<'a, L: Lockable + Default> StorageLock<'a, L>
[src]impl<'a, L: Lockable> StorageLock<'a, L>
[src]
impl<'a, L: Lockable> StorageLock<'a, L>
[src]pub fn with_lockable(key: &'a [u8], lockable: L) -> Self
[src]
Create a new storage lock with an explicit instance of a lockable L
.
pub fn try_lock(
&mut self
) -> Result<StorageLockGuard<'a, '_, L>, <L as Lockable>::Deadline>
[src]
&mut self
) -> Result<StorageLockGuard<'a, '_, L>, <L as Lockable>::Deadline>
A single attempt to lock using the storage entry.
Returns a lock guard on success, otherwise an error containing the
<Self::Lockable>::Deadline
in for the currently active lock
by another task Err(<L as Lockable>::Deadline)
.
pub fn lock(&mut self) -> StorageLockGuard<'a, '_, L>
[src]
Repeated lock attempts until the lock is successfully acquired.
If one uses fn forget(..)
, it is highly likely fn try_lock(..)
is the correct API to use instead of fn lock(..)
, since that might
never unlock in the anticipated span i.e. when used with BlockAndTime
during a certain block number span.
impl<'a> StorageLock<'a, Time>
[src]
impl<'a> StorageLock<'a, Time>
[src]impl<'a, B> StorageLock<'a, BlockAndTime<B>> where
B: BlockNumberProvider,
[src]
impl<'a, B> StorageLock<'a, BlockAndTime<B>> where
B: BlockNumberProvider,
[src]pub fn with_block_and_time_deadline(
key: &'a [u8],
expiration_block_number_offset: u32,
expiration_duration: Duration
) -> Self
[src]
key: &'a [u8],
expiration_block_number_offset: u32,
expiration_duration: Duration
) -> Self
Explicitly create a time and block number based storage lock with a non-default expiration duration and block number offset.
pub fn with_block_deadline(
key: &'a [u8],
expiration_block_number_offset: u32
) -> Self
[src]
key: &'a [u8],
expiration_block_number_offset: u32
) -> Self
Explicitly create a time and block number based storage lock with the default expiration duration and a non-default block number offset.
Auto Trait Implementations
impl<'a, L> RefUnwindSafe for StorageLock<'a, L> where
L: RefUnwindSafe,
L: RefUnwindSafe,
impl<'a, L> Send for StorageLock<'a, L> where
L: Send,
L: Send,
impl<'a, L> Sync for StorageLock<'a, L> where
L: Sync,
L: Sync,
impl<'a, L> Unpin for StorageLock<'a, L> where
L: Unpin,
L: Unpin,
impl<'a, L> UnwindSafe for StorageLock<'a, L> where
L: UnwindSafe,
L: UnwindSafe,
Blanket Implementations
impl<T> CheckedConversion for T
[src]
impl<T> CheckedConversion for T
[src]fn checked_from<T>(t: T) -> Option<Self> where
Self: TryFrom<T>,
[src]
Self: TryFrom<T>,
fn checked_into<T>(self) -> Option<T> where
Self: TryInto<T>,
[src]
Self: TryInto<T>,
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]impl<T> SaturatedConversion for T
[src]
impl<T> SaturatedConversion for T
[src]pub fn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>,
[src]
Self: UniqueSaturatedFrom<T>,
pub fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
[src]
Self: UniqueSaturatedInto<T>,
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]pub fn unchecked_into(self) -> T
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]pub fn unique_saturated_into(self) -> T
[src]
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,