Skip to main content

ThreadListService

Struct ThreadListService 

Source
pub struct ThreadListService { /* private fields */ }
Expand description

A paginated list of threads for a given room.

ThreadListService provides an observable, paginated list of ThreadListItems. It exposes methods to paginate forward through the thread list as well as subscribe to state changes.

When created, the service automatically starts a background task that listens to room event cache updates (from /sync and other sources). Whenever a new event belonging to a known thread arrives, the service updates that thread’s latest_event and num_replies fields in real time, emitting observable diffs to all subscribers.

§Example

use matrix_sdk::Room;
use matrix_sdk_ui::timeline::thread_list_service::{
    ThreadListPaginationState, ThreadListService,
};

let service = ThreadListService::new(room);

assert_eq!(
    service.pagination_state(),
    ThreadListPaginationState::Idle { end_reached: false }
);

service.paginate().await.unwrap();

let items = service.items();

Implementations§

Source§

impl ThreadListService

Source

pub fn new(room: Room) -> Self

Creates a new ThreadListService for the given room.

This immediately spawns a background task that listens to the room’s event cache for live updates. The task self-bootstraps by performing the async event cache subscription internally.

Source

pub fn pagination_state(&self) -> ThreadListPaginationState

Returns the current pagination state.

Source

pub fn subscribe_to_pagination_state_updates( &self, ) -> Subscriber<ThreadListPaginationState>

Subscribes to pagination state updates.

The returned Subscriber will emit a new value every time the pagination state changes.

Source

pub fn items(&self) -> Vec<ThreadListItem>

Returns the current list of thread items as a snapshot.

Source

pub fn subscribe_to_items_updates( &self, ) -> (Vector<ThreadListItem>, VectorSubscriberBatchedStream<ThreadListItem>)

Subscribes to updates of the thread item list.

Returns a snapshot of the current items alongside a batched stream of eyeball_im::VectorDiffs that describe subsequent changes.

Source

pub async fn paginate(&self) -> Result<(), ThreadListServiceError>

Fetches the next page of threads, appending the results to the item list.

  • If the list is already loading or the end has been reached, this method returns immediately with Ok(()).
  • On a network/SDK error the pagination state is reset to Idle { end_reached: false } and the error is propagated.
Source

pub async fn reset(&self)

Resets the service back to its initial state.

Clears all loaded items, discards the current pagination token, and sets the pagination state to Idle { end_reached: false }. The next call to Self::paginate will therefore start from the beginning of the thread list.

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

Source§

type Flavor = MayDrop

The DropFlavor that wraps T into Self
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

Source§

const WITNESS: W = W::MAKE

A constant of the type witness
Source§

impl<T> Identity for T
where T: ?Sized,

Source§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
Source§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

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

Source§

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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> Any for T
where T: Any,

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> JsonCastable<CanonicalJsonValue> for T

Source§

impl<T> JsonCastable<Value> for T

Source§

impl<T> MaybeSendSync for T

Source§

impl<T> SendOutsideWasm for T
where T: Send,

Source§

impl<T> SyncOutsideWasm for T
where T: Sync,