SEQUENTIAL Background Tasks with Kotlin Coroutines (async and await)

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 พ.ย. 2024

ความคิดเห็น • 62

  • @victornorthhead1384
    @victornorthhead1384 4 ปีที่แล้ว +3

    Mate, I’ve learned a lot more from you than from the official Google documentation.

    • @codingwithmitch
      @codingwithmitch  4 ปีที่แล้ว

      Consider leaving a testimonial friend 😬. codingwithmitch.com/testimonials/

  • @kahanbhalani3607
    @kahanbhalani3607 2 ปีที่แล้ว +2

    Wouldn't we get the same result if just called getResult*FromApi() calls as it is:
    val result1 = getResult1FromApi()
    val result2 = getResult2FromApi(result1).
    Wouldn't this work as we are using suspending functions so that before getting result2 our code will be suspended?

  • @VikramYadav-vn2nq
    @VikramYadav-vn2nq 5 ปีที่แล้ว +2

    How is it different from normal launch like in your beginner coroutine example?

  • @biblecartoonsforall
    @biblecartoonsforall 2 ปีที่แล้ว +3

    Don't suspend functions execute sequentially by default? If so, why the need for async and await?

    • @kahanbhalani3607
      @kahanbhalani3607 2 ปีที่แล้ว

      I've the same question. Why should we use async/await?

    • @azekDv
      @azekDv ปีที่แล้ว

      ​@@kahanbhalani3607 async is a coroutine builder, so block of code inside async executed in his own coroutine. That means they executed in "parallel", not sequantially. In order to get a result of the coroutine execution we call await() which is a suspend function and executed sequentially. So, block inside asyncs executed in parallel, but the result of their execution retrieved sequentially.
      In this particular example, there is really no need for async if you call await() right after async.

  • @kristianczepluch6147
    @kristianczepluch6147 4 ปีที่แล้ว +5

    Wait, cant you just use suspend functions which are sequential by default?

    • @feepin2058
      @feepin2058 3 ปีที่แล้ว

      Yeah it's weird

  • @jabrane1564
    @jabrane1564 4 ปีที่แล้ว

    thanks for these videos.
    Im just starting with coroutines and im not gonna lie , this looks intimidating !

  • @whoadityanawandar
    @whoadityanawandar 3 ปีที่แล้ว +2

    Thank you for the video. But I didn't get one thing, why is async await being used here, aren't coroutines executed sequentially by default??!

    • @leonardosibela
      @leonardosibela 3 ปีที่แล้ว

      Yes they are and I think this is not a good example. But I'd like to hear it from Mitch in case I'm not getting something.

  • @baijusharma6027
    @baijusharma6027 5 ปีที่แล้ว +1

    If possible please make a video on Kodein. Also, we would like to know is it easier and more beneficial than Dagger2. You are simply a great teacher. Thankyou :)

  • @codewithpreeti4083
    @codewithpreeti4083 3 ปีที่แล้ว

    Thanks . I have a question ,what if I want to return Execution time from fun fakeApiRequest to some other fun say ..func abc . In this case how to return the value from here and how to retrieve in fun abc ?

  • @bhuvneshvarma7843
    @bhuvneshvarma7843 3 ปีที่แล้ว

    Good video.. why are you not using LifeCycle Scope in activity?

  • @rohithegde9239
    @rohithegde9239 4 ปีที่แล้ว +1

    Awesome tutorials! A suggestion: You can go a little deeper into these topic.

  • @aliciabeltran
    @aliciabeltran 3 ปีที่แล้ว

    Thanks for the video

  • @shahzebmushtaq1297
    @shahzebmushtaq1297 5 ปีที่แล้ว +1

    great video . can you please make some real example that is actual implementation of executing tasks using coroutines or background threads

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว

      I have lots:
      1) codingwithmitch.com/courses/model-view-intent-mvi-architecture/
      2) codingwithmitch.com/courses/powerful-android-apps-with-jetpack-architecture/

  • @prasannadeshpande4435
    @prasannadeshpande4435 3 ปีที่แล้ว

    Thanks for the video.

  • @Lovepreet-xs5qi
    @Lovepreet-xs5qi ปีที่แล้ว

    Thanks Mitch❤

  • @jitendrapratap9667
    @jitendrapratap9667 5 ปีที่แล้ว

    he mitch, i saw you using your own physical device with android studio in one of your videos,how can i do that
    with my own physical device.

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว

      watch this th-cam.com/video/UoBgEn04rLw/w-d-xo.html

  • @yousefzk22
    @yousefzk22 5 ปีที่แล้ว +1

    thanks a lot about Coroutines , can you make a video about set daynight theme in android (Dark/Light) on kotlin :) thank you

  • @JC-oe8ex
    @JC-oe8ex 3 ปีที่แล้ว

    it crash when i after i clicked the button and wait for almost 10mins. im using emulator. can i get a feedback here?

  • @adityagupta375
    @adityagupta375 2 ปีที่แล้ว

    Great content

  • @jayceeddeyro1406
    @jayceeddeyro1406 4 ปีที่แล้ว

    It will be different scenario if using viewmodel and livedata?

    • @berkc5323
      @berkc5323 3 ปีที่แล้ว

      Yes , you can just observe one livedata object and when it has the required answer you just call the other function with that answer. So you don't need to use async + await.

  • @chibuikeoffu
    @chibuikeoffu 4 ปีที่แล้ว

    Hi Mitch, nice video as always please how do I use coroutines to wait for data from a listener before continuing execution.
    var token = ""
    val mUser= firebaseAuth.currentUser
    val userToken = mUser?.getIdToken(true) userToken?.addOnSuccessListener {
    token = it.token!! //the value here is actually set }
    return token }
    I want to wait for the listener is set before i proceed

  • @JujareVinayak
    @JujareVinayak 4 ปีที่แล้ว

    What is difference between previous video and this video. How this video has sequential tasks?

  • @mcircle6489
    @mcircle6489 4 ปีที่แล้ว

    Why await not showing in my coroutine pls help

  • @srjlove2102
    @srjlove2102 5 ปีที่แล้ว +1

    Thanks for more video...

  • @ruifernando8066
    @ruifernando8066 5 ปีที่แล้ว

    what if there is a scenario when we need to call 3 API sequentially (A,B,C). If there is an error occurs during the execution (ex. calling B), how to handle it in clean way? so all the API call will be canceled

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว

      There's lots of different ways to do that. I show you my personal favorite way in the "powerful Android apps with jetpack architecture" course.
      Totally streamlined and seamless error handling. Also cancellations by the user when the back button is pressed or they leave the view.

  • @techmarinar
    @techmarinar 3 ปีที่แล้ว

    Thank you very much 💟💟

  • @arpitgupta3151
    @arpitgupta3151 4 ปีที่แล้ว

    Wait I thought your name is Mitch 😂
    BTW can you create videos on how to use any type of APIs using retrofit for apps?

    • @codingwithmitch
      @codingwithmitch  4 ปีที่แล้ว +1

      Ya here codingwithmitch.com/courses/powerful-android-apps-with-jetpack-architecture/

  • @aliakkawi4759
    @aliakkawi4759 5 ปีที่แล้ว

    Great video, thanks a lot.

  • @jaserq
    @jaserq 4 ปีที่แล้ว

    Can we do everything what we do in rxjava with coroutines ?

    • @blueheartorangeheart3768
      @blueheartorangeheart3768 4 ปีที่แล้ว

      jaserq what do you with rxjava?

    • @jaserq
      @jaserq 4 ปีที่แล้ว

      1- please add tutorials repository wwith coroutines mvvm
      2 -data classes in kotlin doesnt have inheritance. Can you add video about that strategy .

  • @cslesin5750
    @cslesin5750 4 ปีที่แล้ว +1

    It’s so wired,why async/await become sequential?

  • @iwon6644
    @iwon6644 4 ปีที่แล้ว

    Great work btw. but how async/await become sequential here..

  • @ismailissejama9773
    @ismailissejama9773 5 ปีที่แล้ว

    hi mitch what is next project after (
    Powerful Android Apps with Jetpack Architecture)
    ------- would teach us how to use websocket.io for real time database in android using rest api?....

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว

      Planning on doing UI testing with espresso

  • @mb1-9999
    @mb1-9999 5 ปีที่แล้ว

    Can you make a video about jackpack compose

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว

      It's not mature enough yet imo. I will in some time

  • @ajaykumarvishwakarma4720
    @ajaykumarvishwakarma4720 3 ปีที่แล้ว

    Cool👍

  • @KIRILLINGUSS21
    @KIRILLINGUSS21 4 ปีที่แล้ว

    ure awesome/ thnak you

  • @azekDv
    @azekDv ปีที่แล้ว

    I think it is not a good example if you invoke await() immediately after async. There is no sense. You just can use suspend functions without async. It is just not a case for using async