Add terminateModuleProcess function to BridgeClient

This commit is contained in:
C R E S T
2026-04-14 16:07:59 +05:30
committed by GitHub
parent 2c9f5d45e2
commit 25dd438da2

View File

@@ -320,6 +320,8 @@ class BridgeClient(
fun getDebugProp(name: String, defaultValue: String? = null): String? = safeServiceCall { service.getDebugProp(name, defaultValue) }
fun terminateModuleProcess() = safeServiceCall { service.terminateModuleProcess() }
fun startCallDownload(
startTimestamp: Long,
author: String,
@@ -327,4 +329,3 @@ class BridgeClient(
return safeServiceCall { service.startCallDownload(startTimestamp, author) }
}
}