1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RxJavaでNoSuchElementExceptionに苦しめられた話

Last updated at Posted at 2018-03-28

FlowableやMaybeからSingleにつなぐ時にflatMapSingle()を使っていると、NoSuchElementExceptionが発生する事がある。

Completeが流れる可能性のあるストリームにSingleをつなぐとき、実際にCompleteが流れてしまうとSingleで処理できずに例外が飛び、そのままアプリがお亡くなりになる。
普通にFlowableにSingleにつなぐぶんにはRxJavaがよしなにやってくれたりするのだけど。
そもそもCompletableにはSingleつなげなかったりするしね。
でも、flatMapSingle()はお構いなしにつないでしまうので、代わりにflatMapSingleElement()を使う必要がある。
コンパイルエラーもエラーログもIDEの警告もなんも出ないけど、おかしなことをやっていることを我々は自覚できないといけない。

余談

非同期処理をflatMapでつないでつないでつないで行く処理を書いていると、Rxが非同期処理のモナドだなあと感じられて関数型完全に理解した気になれるメリットがあるよね
逆にflatMapとかandThenとかを使っていくことで、そっちを手がかりにモナドを理解できるようになったりしないかな…したらいいな…

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?