Fresh Async With Kotlin • Roman Elizarov • GOTO 2018

Поділитися
Вставка
  • Опубліковано 24 гру 2024

КОМЕНТАРІ •

  • @panemampojmaperla
    @panemampojmaperla 5 років тому +2

    by far the best technique of managing asynchronous code so far

  • @igorg.8624
    @igorg.8624 5 років тому

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

  • @alxkub
    @alxkub 6 років тому +3

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

    • @lshnk
      @lshnk 6 років тому +3

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

    • @alxkub
      @alxkub 6 років тому +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 6 років тому

      right...

    • @lshnk
      @lshnk 6 років тому +6

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

    • @nirmalnepal1
      @nirmalnepal1 6 років тому +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.