[6.2.0][技术优化] 更改Handler消息记录方式,对编译生成的类方法集合进行过滤

This commit is contained in:
renwj
2023-11-20 15:35:36 +08:00
parent c8efde952b
commit 59ac4d030b
20 changed files with 824 additions and 1067 deletions

View File

@@ -2,13 +2,13 @@ package com.mogo.eagle.core.function.api.devatools.perf
interface IMoGoCpuUsageProvider {
fun onProcessLaunched(time: Long)
fun onProcessLaunched()
fun startMainThreadTime(time: Long)
fun onMainThreadLaunched()
fun updateMainThreadTime(time: Long)
fun updateMainThreadTime()
fun incrementOtherThreadUsage(group: String, t: Thread, usage: Long)
fun updateOtherThreadTime()
fun dump(): LinkedHashMap<String, Long>
}