UsersRx

class UsersRx

Reactive API of Users.

This class replicates the methods included in Users but using Rx types as return values instead of callbacks.

Properties

Link copied to clipboard
val userUpdated: Observable<User>

Functions

Link copied to clipboard
fun getUserBy(id: String): Single<User>

Searches for the user who have an id that matches the specified id.

Link copied to clipboard
fun getUserByUri(userUri: String): Single<User>

Searches for the user who have an Uri that matches the specified userUri.

Link copied to clipboard
fun getUsersBy(identifier: String): Single<List<User>>

Searches for users who have any field that matches the specified identifier.