[3.2.0][APM] APM初始化在读是否是Debug时,切换到子线程

This commit is contained in:
renwj
2023-06-01 19:33:24 +08:00
parent ef9e64cf5a
commit b24d3588d1
2 changed files with 25 additions and 10 deletions

View File

@@ -1,10 +1,13 @@
package com.mogo.eagle.core.function.api.devatools.apm
import androidx.annotation.WorkerThread
interface IApmEnvProvider {
fun init(buildType: String, netType: String, dockerVersion: String)
fun onEnvChanged(buildType: String, netType: String, dockerVersion: String)
@WorkerThread
fun isDebugEnabled(): Boolean?
}