1 package expo.modules.av.progress
2 
3 import android.os.Handler
4 
5 class AndroidLooperTimeMachine : TimeMachine {
6 
scheduleAtnull7   override fun scheduleAt(intervalMillis: Long, callback: TimeMachineTick) {
8     Handler().postDelayed(callback, intervalMillis)
9   }
10 
11   override val time: Long
12     get() = System.currentTimeMillis()
13 }
14