Fresh Async With Kotlin • Roman Elizarov • GOTO 2018

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

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

  • @panemampojmaperla
    @panemampojmaperla 5 лет назад +2

    by far the best technique of managing asynchronous code so far

  • @igorg.8624
    @igorg.8624 4 года назад

    Is there an example we can see for writing/using higher-order functions with Coroutines?

  • @alxkub
    @alxkub 5 лет назад +3

    You say callbacks are hell? No way! Understanding how coroutines or async/await stuff works is real hell! 🤯🤯🤯

    • @lshnk
      @lshnk 5 лет назад +3

      Why? The async/await works most of the time in predictable way, while callback always include something new!

    • @alxkub
      @alxkub 5 лет назад +2

      Vladymyr L Well, because with callbacks I more or less understand how it works. With some kind of run loop, queue of tasks and stuff like that. And I can understand why and when something is executed. But with more involved techniques it becomes really hard to track it, to debug it, to read the code, to understand stack traces...

    • @nyarian835
      @nyarian835 5 лет назад

      right...

    • @lshnk
      @lshnk 5 лет назад +6

      @@alxkub it looks like gap in your knowledge. Imho

    • @nirmalnepal1
      @nirmalnepal1 5 лет назад +1

      You will eventually catch up with programming. I had been in same place but eventually you will understand why these libs and all are there.