Struct matrix_sdk_ui::sync_service::SyncService
source · pub struct SyncService { /* private fields */ }
Implementations§
source§impl SyncService
impl SyncService
sourcepub fn builder(client: Client) -> SyncServiceBuilder
pub fn builder(client: Client) -> SyncServiceBuilder
Create a new builder for configuring an SyncService
.
sourcepub fn room_list_service(&self) -> Arc<RoomListService>
pub fn room_list_service(&self) -> Arc<RoomListService>
Get the underlying RoomListService
instance for easier access to its
methods.
sourcepub fn state(&self) -> Subscriber<State>
pub fn state(&self) -> Subscriber<State>
Returns the state of the sync service.
sourcepub async fn start(&self)
pub async fn start(&self)
Start (or restart) the underlying sliding syncs.
This can be called multiple times safely:
- if the stream is still properly running, it won’t be restarted.
- if the stream has been aborted before, it will be properly cleaned up and restarted.
sourcepub async fn stop(&self) -> Result<(), Error>
pub async fn stop(&self) -> Result<(), Error>
Stop the underlying sliding syncs.
This must be called when the app goes into the background. It’s better to call this API when the application exits, although not strictly necessary.
sourcepub fn try_get_encryption_sync_permit(
&self,
) -> Option<OwnedMutexGuard<EncryptionSyncPermit>>
pub fn try_get_encryption_sync_permit( &self, ) -> Option<OwnedMutexGuard<EncryptionSyncPermit>>
Attempt to get a permit to use an EncryptionSyncService
at a given
time.
This ensures there is at most one EncryptionSyncService
active at
any time, per application.
Auto Trait Implementations§
impl !Freeze for SyncService
impl !RefUnwindSafe for SyncService
impl Send for SyncService
impl Sync for SyncService
impl Unpin for SyncService
impl !UnwindSafe for SyncService
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
Mutably borrows from an owned value. Read more
§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>
Consume a handle, getting back the initial
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>
Converts
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>
Converts
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