style: 修改注释

This commit is contained in:
Quyunshuo
2021-06-02 17:38:07 +08:00
parent 1967bc1800
commit 45125c87cd
2 changed files with 7 additions and 1 deletions

View File

@ -57,6 +57,11 @@ class CommonApplication : ApplicationLifecycle {
*/
override fun onTerminate(application: Application) {}
/**
* 需要立即进行初始化的放在这里进行并行初始化
* 需要必须在主线程初始化的放在[InitDepend.mainThreadDepends],反之放在[InitDepend.workerThreadDepends]
* @return InitDepend 初始化方法集合
*/
override fun initByFrontDesk(): InitDepend {
val worker = mutableListOf<() -> String>()
val main = mutableListOf<() -> String>()