No video

Android Coroutines: How to manage async tasks in Kotlin

  Рет қаралды 41,916

Android Developers

Android Developers

Күн бұрын

Пікірлер: 65
@puhgeh
@puhgeh 4 жыл бұрын
Thank you so much! It's time to migrate my livedata to flow!
@no_one1500
@no_one1500 4 жыл бұрын
saddd people are moving to flow etc etc and here i am learning livedata ....
@joaquimley
@joaquimley 4 жыл бұрын
@@no_one1500 Still valuable!
@houssemzaier
@houssemzaier 3 жыл бұрын
you still need if you do databinding.
@goobar
@goobar 4 жыл бұрын
Bye bye AsyncTask 😀👋 .... Hello Coroutines!!
@buzzminkyunghoon3856
@buzzminkyunghoon3856 4 жыл бұрын
I will still use Async tasks in Flutter
@shaun.august
@shaun.august 4 жыл бұрын
bro, AsyncTask is not going nowhere, all what has changed is name and the way it works and executes in the background. AsyncTask is always there...and will be..
@areebjamaliam
@areebjamaliam 4 жыл бұрын
@@shaun.august LOL. That's r/mAndroid stuff
@edulgl
@edulgl 4 жыл бұрын
@@shaun.august AsyncTask will be forever in our hearts
@harvey7771
@harvey7771 4 жыл бұрын
AsyncTask: I've moved to behind the curtain. :D
@PatricioMoschcovich
@PatricioMoschcovich 4 жыл бұрын
Great video! I am looking forward to learning more about coroutines
@igorg.8624
@igorg.8624 4 жыл бұрын
I am curious why your example observes LiveData or collects Flow directly in the Activity. Isn't it better to use a ViewModel?
@joaquimley
@joaquimley 4 жыл бұрын
Is it just me or in the first example the: val dbData = readFromDb() should've been "data"? Looks like you are "uploading" to the remote server, the variable is called "data" and it isn't declared in the fun's scope?
@kirill4531
@kirill4531 4 жыл бұрын
yep
@ViTORossonero
@ViTORossonero 4 жыл бұрын
Snippet at 4:11 has an error: Single.just(readFromDb()) .subscribeOn(Schedulers.io()) is actually equivalent of Single.just(readFromDb()) .observeOn(Schedulers.io()) thus readFromDb() will be ran on the thread createWork is called(main?). And it's not about RxJava, it's about Kotlin(or Java): to call a function(Single.just) we have to calculate its parameters first.
@TheDnaitsirc
@TheDnaitsirc 4 жыл бұрын
So... Use or not LiveData? Will there be a stable decision?
@joaquimley
@joaquimley 4 жыл бұрын
For the UI layer? Yes. Anything else? No.
@TheDnaitsirc
@TheDnaitsirc 4 жыл бұрын
Not stable decision certainly. He says that in the video.
@yaroslavkulinich7155
@yaroslavkulinich7155 4 жыл бұрын
@@TheDnaitsirc Flow is a stable decision for repository and data source levels. Livedata is for View and VIewModel levels. StateFlow and SharedFlow are not stable yet but it fully replaces LiveData on mentioned levels.
@dannicron
@dannicron 4 жыл бұрын
So what is the rule for collecting flows in UI controllers? asLiveData().observe(..) when I want to observe hot streams as cold flows and lifecycleScope.launchWhenStarted when I observe e.g. database?
@mddi1420
@mddi1420 3 жыл бұрын
It should be interesting to show also how to unit test it
@seshadripera
@seshadripera 4 жыл бұрын
Good alternative for AsyncTask 👍
@thurainbowin7164
@thurainbowin7164 3 жыл бұрын
omg... i am just understanding asynTask. It is now deprecated..
@pavneetsingh4809
@pavneetsingh4809 4 жыл бұрын
So the live data and the flow (state, shared, channel, etc) will likely to coexist and won't converge?
@gi1dor
@gi1dor 4 жыл бұрын
I don't see any reason to use LiveData if you already use RxJava or Flow, except databindings (which I hope will be fixed at some point too)
@RhexGomez
@RhexGomez 4 жыл бұрын
Databinding might become irrelevant if we fully switch to Compose. Although it is too early to say that.
@gi1dor
@gi1dor 4 жыл бұрын
@@RhexGomez Yes, but it doesn't related to original argument, that LiveData look not relevant if you have proper reactive library. If we talking about databinding, it doesn't mean that with release of Compose in 1-2 years magically all apps who use data bindings are disappeared or rewrite all code to compose
@pavneetsingh4809
@pavneetsingh4809 4 жыл бұрын
@@gi1dor LiveData is lifecycle aware that makes it more efficient when being used in a activity or fragment. Foreseeing a library of lifecycle aware flow and channels, in case of no inbuilt support.
@gi1dor
@gi1dor 4 жыл бұрын
@@pavneetsingh4809 This sounds as repeating of some marketing, than actual argument. "lifecycle aware" just fancy words for subscribing and unsubscribing on particular lifecycle events, Flow not only lifecycle aware, it has structured concurrency which already works with Android lifecycle, and prevents leaks. Example from video about that LiveData unsubscribed on stop and resume on start can be implemented with 5 lines of code with Flow + LifecycleOwner. So no, it's not more efficient, it just has particular default behavior (which by the way not so easy to avoid)
@rpintellicus8223
@rpintellicus8223 3 жыл бұрын
You guys have made android tough to learn, can't you make it simpler
@user-ce1om8ku4v
@user-ce1om8ku4v 2 жыл бұрын
Thank you, best man!!
@LiranBarsisa
@LiranBarsisa 4 жыл бұрын
How do you cancel a job via kotlin coroutines, in the same way you can do for AsyncTask? For when you have AsyncTask instance, you have a choice, of canceling with and without interruption. ON kotlin coroutines, I can see that you have to choose it when you create it. Is it correct?
@StreetsOfBoston
@StreetsOfBoston 4 жыл бұрын
Either call "cancel()" on the CoroutineScope that starts all your coroutines, or call "cancel()" on a "Job"/"Deferred" returned by the call to "launch" or "async" But "cancel()" will not interrupt a blocking thread. It will only cancel a suspending coroutine.
@serensis
@serensis 4 жыл бұрын
How can at the java?..Is it no way?! ㅠㅠ
@_checkit
@_checkit 2 жыл бұрын
Nothing better than a new API to easily write gotcha code and break your app !
@mahavirprasad9476
@mahavirprasad9476 4 жыл бұрын
Nice bro tq
@nogueirasjn
@nogueirasjn 4 жыл бұрын
Hello Coroutines!!!
@antoniokomangyudistira4150
@antoniokomangyudistira4150 4 жыл бұрын
Ugh my head goes 🤯🤯
@BrilTek
@BrilTek 4 жыл бұрын
Why?
@azulamazigh2789
@azulamazigh2789 4 жыл бұрын
me too
@isaimosso2764
@isaimosso2764 4 жыл бұрын
Excellent!
@mahavirprasad9476
@mahavirprasad9476 4 жыл бұрын
Tq bro
@CaioFaustino
@CaioFaustino 4 жыл бұрын
great video!
@mahavirprasad9476
@mahavirprasad9476 4 жыл бұрын
Oh ..
@michaelnajera7958
@michaelnajera7958 4 жыл бұрын
I wish Swift had coroutines
@andreberenguel5753
@andreberenguel5753 4 жыл бұрын
Dispatchers are simpler
@rsolmenra6231
@rsolmenra6231 4 жыл бұрын
good
@hdkloh6857
@hdkloh6857 4 жыл бұрын
Making Simple way more Complex
@okaymak
@okaymak 4 жыл бұрын
Would have been nice if audio and video were in sync.
@tubtxheejlischannel72
@tubtxheejlischannel72 4 жыл бұрын
how are you
@kirill4531
@kirill4531 4 жыл бұрын
I used to write Android apps on Java but two years ago I switched to Flutter on Dart. And never regretted since then. Everything is so much easier in Flutter. I remember how AsyncTasks first appeared and became recommended, now its deprecated... I'm tired of it frankly speaking. Why should I learn Kotlin? Why should have created new programming language just for Android? Kotlin is not used anywhere else
@eliasb3857
@eliasb3857 3 жыл бұрын
It seems you took a long distance since you switched to Flutter. Anyways, kotlin isn't only for android, it's also used for multiplatform projects, you can have ios base code and create a backend with kotlin
@kirill4531
@kirill4531 3 жыл бұрын
@@eliasb3857 does the backend language matter? You can create a backend on php, who cares, as long as it sends and receives the data
@eliasb3857
@eliasb3857 3 жыл бұрын
@@kirill4531 rofl, your statement was 'why they'd created a language only for Android'
@petrkubi
@petrkubi 3 жыл бұрын
144p 📹
@IOOISqAR
@IOOISqAR 3 ай бұрын
Get to the point, too much blablabla!
@Rajmanov
@Rajmanov 4 жыл бұрын
Good bye java!
State of Kotlin on Android
14:31
Android Developers
Рет қаралды 43 М.
Kotlin Coroutines 101 - Android Conference Talks
24:49
Android Developers
Рет қаралды 134 М.
Joker can't swim!#joker #shorts
00:46
Untitled Joker
Рет қаралды 39 МЛН
Box jumping challenge, who stepped on the trap? #FunnyFamily #PartyGames
00:31
Family Games Media
Рет қаралды 32 МЛН
WORLD'S SHORTEST WOMAN
00:58
Stokes Twins
Рет қаралды 189 МЛН
SPILLED CHOCKY MILK PRANK ON BROTHER 😂 #shorts
00:12
Savage Vlogs
Рет қаралды 46 МЛН
Support for newer Java language APIs
10:05
Android Developers
Рет қаралды 15 М.
LiveData with Coroutines and Flow (Android Dev Summit '19)
18:44
Android Developers
Рет қаралды 110 М.
Thinking in Compose
25:27
Android Developers
Рет қаралды 87 М.
KMP vs. Flutter - Who Will Win The Cross-Platform Battle?
16:19
Philipp Lackner
Рет қаралды 42 М.
I forced EVERYONE to use Linux
22:59
NetworkChuck
Рет қаралды 395 М.
Understand Kotlin Coroutines on Android (Google I/O'19)
37:49
Android Developers
Рет қаралды 174 М.
Kotlin Flows in a Nutshell
13:59
Philipp Lackner
Рет қаралды 58 М.
Joker can't swim!#joker #shorts
00:46
Untitled Joker
Рет қаралды 39 МЛН