Functions

Link copied to clipboard
abstract fun blockingExists(): Boolean

Returns if the object exists in a synchronous way. Important: this is a blocking method and it should not be executed in the main thread. Consider the asynchronous version .exists.

Link copied to clipboard
abstract fun blockingGet(): M?

Returns the object in a synchronous way. Important: this is a blocking method and it should not be executed in the main thread. Consider the asynchronous version .get.

Link copied to clipboard
abstract fun exists(): Single<Boolean>

Returns if the object exists in an asynchronous way, returning a Single<Boolean>.

Link copied to clipboard
abstract fun get(): Single<M?>

Returns the object in an asynchronous way, returning a Single<M>.