aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/moe/yuuta/workmode/async/Stoppable.kt
blob: 36e0335825e592afe3f4775cf4be91419a5400e2 (plain)
1
2
3
4
5
6
package moe.yuuta.workmode.async

interface Stoppable {
    fun stop()
    fun isStopped(): Boolean
}