KotlinConf 2019: Migrating a Library from RxJava To Coroutines by Mike Nakhimovich & Yiğit Boyar

Поделиться
HTML-код
  • Опубликовано: 27 ноя 2024

Комментарии • 7

  • @marshallladd
    @marshallladd 4 года назад +17

    The title of this video is very misleading. "What's In Store?" is the actual name of this talk. Glad I found it and can't wait to contribute but, not much actual information about RxJava to Coroutines in the generic sense as the video title implies.

  • @SuperNolane
    @SuperNolane 4 года назад +21

    "How easy Android is" HAHAHA

  • @WeiMingChenFromGoogle
    @WeiMingChenFromGoogle 4 года назад

    Awesome video about the migration of Store!

  • @eyupgurel916
    @eyupgurel916 4 года назад +4

    Why do we need to do so?

  • @Neo-wd3qy
    @Neo-wd3qy 4 года назад +3

    why we need them together, confuse ourselves? :(

  • @robchr
    @robchr 3 года назад +1

    In RxJava, you need to .dispose() of disposables. In Coroutines, you need to .cancel() your CoroutineScopes. I don't see how that's better.

    • @ankuranurag9004
      @ankuranurag9004 3 года назад +3

      You get various predefined scopes like lifeCycleScope and viewModelScope, where you can perform all you tasks in a lifeCycle-aware way. These scopes handle the coroutines cancellation themselves when activity is destroyed or viewmodel is cleared.