DEV Community

Discussion on: Executing tiny asynchronous tasks quickly in Android under 10 lines

Collapse
 
johnson_cor profile image
Corey Johnson • Edited

That's a really neat trick, thanks for sharing! When I was looking into the AsyncTask.execute definition, the comment on the default executor says that using this method runs the runnables in "Serial Order", would this mean that it's executing the runnables similar to a Queue?

EDIT: developer.android.com/reference/ja... this kinda helps answer my question actually