pub struct UtdHookManager { /* private fields */ }
Expand description
A manager over an existing UnableToDecryptHook
that deduplicates UTDs
on similar events, and adds basic consistency checks.
It can also implement a grace period before reporting an event as a UTD, if
configured with Self::with_max_delay
. Instead of immediately reporting
the UTD, the reporting will be delayed by the max delay at most; if the
event could eventually get decrypted, it may be reported before the end of
that delay.
Implementations§
source§impl UtdHookManager
impl UtdHookManager
sourcepub fn new(parent: Arc<dyn UnableToDecryptHook>, client: Client) -> Self
pub fn new(parent: Arc<dyn UnableToDecryptHook>, client: Client) -> Self
Create a new UtdHookManager
for the given hook.
A Client
must also be provided; this provides a link to the
matrix_sdk_base::StateStore
which is used to load and store the
persistent data.
sourcepub fn with_max_delay(self, delay: Duration) -> Self
pub fn with_max_delay(self, delay: Duration) -> Self
Reports UTDs with the given max delay.
Note: late decryptions are always reported, even if there was a grace period set for the reporting of the UTD.
sourcepub async fn reload_from_store(&mut self) -> Result<(), StoreError>
pub async fn reload_from_store(&mut self) -> Result<(), StoreError>
Load the persistent data for the UTD hook from the store.
If the client previously used a UtdHookManager, and UTDs were encountered, the data on the reported UTDs is loaded from the store. Otherwise, there is no effect.
Trait Implementations§
source§impl Debug for UtdHookManager
impl Debug for UtdHookManager
Auto Trait Implementations§
impl Freeze for UtdHookManager
impl !RefUnwindSafe for UtdHookManager
impl Send for UtdHookManager
impl Sync for UtdHookManager
impl Unpin for UtdHookManager
impl !UnwindSafe for UtdHookManager
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CompatExt for T
impl<T> CompatExt for T
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Arc<>
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more