所以我有一个非常基本的RxJava观察者流工作流程,我在那里请求改造,成功的响应我干杯成功的msg和错误I toast error msg。
我在下面提到的情况是错误情况,我希望API中出现错误消息,我将其转换为用户可读的单词并显示为Toast
,如下所示,当我使用doOnNext
和{ {1}}方法这种方式会因提到的错误而崩溃。
我还添加了doOnError
方法,它显示了我如何转换可读消息以及控制台指向错误的行。
throwExceptionIfFailure
错误如果这还不够,我也可以发布stacktrace。
registerNFCTag(body)
.map(result -> throwExceptionIfFailure(result))
.observeOn(AndroidSchedulers.mainThread())
.doOnNext(result -> {
toggleLoaders(true);
appToast(getString(R.string.done_msg) + tagName);
})
.doOnError(throwable -> {
Toasty.error(this, throwable.getLocalizedMessage()).show();
toggleLoaders(true);
})
.subscribeOn(Schedulers.io())
.subscribe();
ThrowExceptionIfFailure方法。
java.lang.IllegalStateException: Exception thrown on Scheduler.Worker thread. Add `onError` handling.
但同样的事情我订阅这种方式并且它工作正常,我看到错误消息如预期的那样烘烤。
public <T> T throwExceptionIfFailure(T res) {
Response result = (Response<?>) res;
if (!result.isSuccessful()) {
try {
String msg = result.errorBody().string();
Log.d(TAG, "throwExceptionIfFailure: "+msg);
if (result.code() == 401 || result.code() == 403) {
invalidateToken();
msg = context.getString(R.string.invalid_credential);
}
else if (result.code() == 502)
msg = context.getString(R.string.server_down);
else if (result.code() == 422)
msg = context.getString(R.string.invalid_domain);
else if (result.code() == 500)
msg = context.getString(R.string.internal_server_error_500_msg);
else if (result.code() == 451)
------><>>>>>> expected error msg works well with the case mentioned below with throwable in subscribe itself.
msg = context.getString(R.string.toast_tag_already_registered_error);
if (result.code() == 403)
throw new TokenException();
else
------>>>>>below line where console points error
throw Exceptions.propagate(new RuntimeException(msg));
} catch (Throwable e) {
throw Exceptions.propagate(e);
}
} else {
return res;
}
}
仍然是RxJava2世界的新手所以,帮助我理解其中的区别。先感谢您。
答案 0 :(得分:2)
从RxJava 2.1.9开始,subscribe()
方法有six overloads。您使用了一个过载,根本不需要任何消费者。异常消息告诉您,您应该使用subscribe()
重载,这会导致错误Consumer
,例如subscribe(Consumer<? super T> onNext, Consumer<? super java.lang.Throwable> onError)
doOnError()
是“副作用”运算符,它与实际订阅无关。