/tripkit/TripKitAndroidUI/com.skedgo.tripkit.ui.core.rxproperty

Package-level declarations

Functions

Name Summary
asObservable fun ObservableBoolean.asObservable(): Observable<Boolean>
When we subscribe to an Observable created by this function, the Observable will emit the current value of ObservableBoolean and also emit any future changes.
fun <T> ObservableField<T>.asObservable(): Observable<T>
When we subscribe to an Observable created by this function, the Observable will emit the current value of ObservableField and also emit any future changes.
fun ObservableInt.asObservable(): Observable<Int>
When we subscribe to an Observable created by this function, the Observable will emit the current value of ObservableInt and also emit any future changes.
fun <T> ObservableList<T>.asObservable(): Observable<ObservableList<T>>