SystemInfoObjectRepository

class SystemInfoObjectRepository : ReadOnlyFirstObjectWithDownloadRepositoryImpl<SystemInfo, SystemInfoObjectRepository>

Functions

Link copied to clipboard
open override fun blockingDownload()

Downloads the resource in scope in a synchronous way. The method will finish as soon as the whole download and processing is finished. Important: this is a blocking method and it should not be executed in the main thread. Consider the asynchronous version .download.

Link copied to clipboard
open override 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
open override fun blockingGet(): SystemInfo?

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
Link copied to clipboard
open override fun download(): Completable

Downloads the resource in scope in an asynchronous way. As soon as it's downloaded and processed, the Completable is completed.

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

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

Link copied to clipboard
open override fun get(): Single<SystemInfo?>

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