Updated on 2026-08-14

This commit is contained in:
Tangem 2026-02-09 20:34:51 +03:00
parent 20e2ffa64c
commit 47a7c02d29
4 changed files with 92 additions and 10 deletions

View file

@ -30,6 +30,10 @@ class JobHolder {
job = null
}
suspend fun join() {
job?.join()
}
fun isEmpty() = job == null
}