Kotlin Coroutines: In Depth [FREE]

栏目: IT技术 · 发布时间: 4年前

Dive Into Coroutines

Take a tour around asynchronous programming mechanisms in Android, and learn what coroutines are, how they work, and why you should consider using them instead.

In this episode, start your first coroutine Job, and see what its lifecycle is.

Understand what the CoroutineContext is, and how it influences coroutines.

Explore some advanced Job relations and functionality, and how to communicate the lifecycle of coroutines to the rest of the project.

Implement Coroutines In Android

Learn the structure and the features of the project you'll be working on, and how to use the best practices of Kotlin Coroutines.

Launch the basic Kotlin Coroutine functions, to simplify background work in the project.

Learn how to bind your coroutines to the lifecycle of your app's components, such as Activities or Fragments.

Learn what context switching means, and how to bridge the gap between asynchronous and synchronous worlds. Dive into the concept of suspendability.

Separate business logic from context switching and threading by abstracting away implementation details. Decouple dependencies for context providing to support testing.

Debug & Test Coroutines

Handle errors that occur within coroutines with custom error handlers or manual exception catching. Or, instead of working with exceptions, wrap your data with a Result.

Apply needed changes to have a clear log of information, about which coroutines are running and in which threads.

Learn how to set up the testing environment, so you can easily run and test coroutines using JUnit 4 and Mockito, and verify the functionality of your code.

Coroutines With Libraries

Instead of awaiting a Response from Retrofit, use the suspend function approach to expect an entity model directly from the API.

Remove async calls and wrappers, and rely on the internal Room logic to fetch data without blocking.

Find out how to connect the Android Lifecycle and the CoroutineScope to handle cancellation automatically using ViewModels.


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

算法设计与分析

算法设计与分析

郑宗汉//郑晓明 / 清华大学 / 2011-7 / 45.00元

《算法设计与分析(第2版)》系统地介绍算法设计与分析的概念和方法,共4部分内容。第1部分介绍算法设计与分析的基本概念,结合穷举法、排序问题及其他一些算法,对算法的时间复杂性的概念及复杂性的分析方法作了较为详细的叙述;第2部分以算法设计技术为纲,从合并排序、堆排序、离散集合的union和find操作开始,进而介绍递归技术、分治法、贪婪法、动态规划、回溯法、分支与限界法和随机算法等算法设计技术及其复杂......一起来看看 《算法设计与分析》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具