<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
先看一下 ViewModel 中的 ViewModelScope 是何方神聖
val ViewModel.viewModelScope: CoroutineScope get() { val scope: CoroutineScope? = this.getTag(JOB_KEY) if (scope != null) { return scope } return setTagIfAbsent(JOB_KEY, CloseableCoroutineScope(SupervisorJob() + Dispatchers.Main.immediate)) }
可以看到這個是一個擴充套件方法,
再點選 setTagIfAbsent 方法進去
<T> T setTagIfAbsent(String key, T newValue) { T previous; synchronized (mBagOfTags) { previous = (T) mBagOfTags.get(key);//第一次肯定為null if (previous == null) { mBagOfTags.put(key, newValue);//null 儲存 } } T result = previous == null ? newValue : previous; if (mCleared) {//判斷是否已經clear了 // It is possible that we'll call close() multiple times on the same object, but // Closeable interface requires close method to be idempotent: // "if the stream is already closed then invoking this method has no effect." (c) closeWithRuntimeException(result); } return result; }
可以看到 這邊 會把 我們的 ViewModel 儲存到 ViewModel 內的 mBagOfTags 中
這個 mBagOfTags 是
private final Map<String, Object> mBagOfTags = new HashMap<>();
這個時候 我們 viewModel 就會持有 我們 viewModelScope 的協程 作用域了。那..這也只是 表述了 我們 viewModelScope 存在哪裡而已,什麼時候清除呢?
先看一下 ViewModel 的生命週期:
可以看到 ViewModel 的生命週期 會在 Activity onDestory 之後會被呼叫。那...具體哪裡調的?
翻看原始碼可以追溯到 ComponentActivity 的預設構造器內
public ComponentActivity() { /*省略一些*/ getLifecycle().addObserver(new LifecycleEventObserver() { @Override public void onStateChanged(@NonNull LifecycleOwner source, @NonNull Lifecycle.Event event) { if (event == Lifecycle.Event.ON_DESTROY) { if (!isChangingConfigurations()) { getViewModelStore().clear(); } } } }); }
可以看到內部會通對 Lifecycle 新增一個觀察者,觀察當前 Activity 的生命週期變更事件,如果走到了 Destory ,並且 本次 Destory 並非由於設定變更引起的,才會真正呼叫 ViewModelStore 的 clear 方法。
跟進 clear 方法看看:
public class ViewModelStore { private final HashMap<String, ViewModel> mMap = new HashMap<>(); /** * Clears internal storage and notifies ViewModels that they are no longer used. */ public final void clear() { for (ViewModel vm : mMap.values()) { vm.clear(); } mMap.clear(); } }
可以看到這個 ViewModelStore 內部實現 用 HashMap 儲存 ViewModel
於是在 clear 的時候,會逐個遍歷呼叫 clear方法,再次跟進 ViewModel 的 clear 方法
@MainThread final void clear() { mCleared = true; // Since clear() is final, this method is still called on mock objects // and in those cases, mBagOfTags is null. It'll always be empty though // because setTagIfAbsent and getTag are not final so we can skip // clearing it if (mBagOfTags != null) { synchronized (mBagOfTags) { for (Object value : mBagOfTags.values()) { // see comment for the similar call in setTagIfAbsent closeWithRuntimeException(value); } } } onCleared(); }
可以發現我們最初 存放 viewmodelScope 的 mBagOfTags
這裡面的邏輯 就是對 mBagOfTags 儲存的資料 挨個提取出來並且呼叫 closeWithRuntimeException
跟進 closeWithRuntimeException:
private static void closeWithRuntimeException(Object obj) { if (obj instanceof Closeable) { try { ((Closeable) obj).close(); } catch (IOException e) { throw new RuntimeException(e); } } }
該方法內會逐個判斷 物件是否實現 Closeable 如果實現就會呼叫這個介面的 close 方法,
再回到最初 我們 viewModel 的擴充套件方法那邊,看看我們 viewModelScope 的真正面目
internal class CloseableCoroutineScope(context: CoroutineContext) : Closeable, CoroutineScope { override val coroutineContext: CoroutineContext = context override fun close() { coroutineContext.cancel() } }
可以明確的看到 我們的 ViewModelScope 實現了 Closeable 並且充寫了 close 方法,
close 方法內的實現 會對 協程上下文進行 cancel。
至此我們 可以大致整理一下:
到此這篇關於一文了解Android ViewModelScope 如何自動取消協程的文章就介紹到這了,更多相關Android ViewModel Scope 取消協程內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45