RxJava および Reactive に不慣れなので、的外れな質問をしているかもしれませんが、よろしくお願いいたします。
現在、以下のようなコードを書いております。
java
1Single.create((SingleOnSubscribe<Response>) emitter -> { 2 3 MyClient client = MyClient.getInstance(); 4 Response response = client.realm(realmName).users().create(user); 5 6 // 4XX系 7 if (response.getStatus() / 100 == 4) { 8 emitter.onError(new ApiBusinessErrorException("AA0099E", new String[]{response.readEntity(SSOError.class).getErrorMessage()})); 9 } else { 10 emitter.onSuccess(response); 11 } 12}).retry((integer, throwable) -> { 13 if (throwable instanceof ApiBusinessErrorException) 14 return false; 15 else { 16 if(integer >= 3){ 17 return false; 18 } 19 Thread.sleep(1000); 20 return true; 21 } 22}).blockingGet();
APIをリクエストする部分は MyClient で実装されています。
MyClient には以下の制限があります(SDKの制限)
- 4XX系は Response にステータスコードがセットされる
- 5XX系は Exception が throw される
また、APIをリクエスト側(本コード)には以下の要件があります。
- 4XX系はリトライせず、1回目のエラーで ApiBusinessErrorException を throw する
- 5XX系は1秒インターバルで3回までリトライし、それでもエラーだった場合は SystemErrorException を throw する
上記コードの場合、RuntimeException(4XX系)またはProcessingException(5XX系)のエラーが throw されてしまって、自前の Exception(ApiBusinessErrorException/SystemErrorException)を throw できません。
java
1.subscribe(i -> { 2 3 }, 4 e -> { 5 throw SystemErrorException 6 });
最後の blockingGet の部分を上記のように変えた場合、CompositeException が throw されました(中身には自前の Exception が入っていました)。
純粋に自前の Exception を呼び出し元に throw する方法はありますでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/11/07 10:42