/tripkit/TripKitAndroid/com.skedgo.rxtry/subscribeWithErrorHandling
subscribeWithErrorHandling
\ fun <T : Any> Observable<T>.subscribeWithErrorHandling(onError: (Throwable) -> Unit = { it.printThrowableStackTrace() }, onNext: (T) -> Unit): Disposable
fun Completable.subscribeWithErrorHandling(onError: (Throwable) -> Unit = { it.printThrowableStackTrace() }, onComplete: () -> Unit = {}): Disposable
fun <T : Any> Single<T>.subscribeWithErrorHandling(onError: (Throwable) -> Unit = { it.printThrowableStackTrace() }, onSuccess: (T) -> Unit): Disposable
fun <T : Any> Flowable<T>.subscribeWithErrorHandling(onError: (Throwable) -> Unit = { it.printThrowableStackTrace() }, onSuccess: (T) -> Unit): Disposable