-
public interface DisconnectionRouterOutputInterface to output disconnection error causes. It is used for instance to notify when the com.polidea.rxandroidble2.internal.serialization.ConnectionOperationQueue should terminate because of a connection error
-
-
Method Summary
Modifier and Type Method Description abstract Observable<BleException>asValueOnlyObservable()Function returning an Observable that will only emit value in case of a disconnection (will never emit an error) abstract <T> Observable<T>asErrorOnlyObservable()Function returning an Observable that will only throw error in case of a disconnection (will never emit value) -
-
Method Detail
-
asValueOnlyObservable
abstract Observable<BleException> asValueOnlyObservable()
Function returning an Observable that will only emit value in case of a disconnection (will never emit an error)
-
asErrorOnlyObservable
abstract <T> Observable<T> asErrorOnlyObservable()
Function returning an Observable that will only throw error in case of a disconnection (will never emit value)
-
-
-
-