2022-11-14 19:16:55 +01:00
|
|
|
(ns react-native.background-timer
|
|
|
|
|
(:require ["react-native-background-timer" :default background-timer]))
|
|
|
|
|
|
2022-12-20 22:45:37 +08:00
|
|
|
(defn set-timeout
|
|
|
|
|
[cb ms]
|
2022-11-14 19:16:55 +01:00
|
|
|
(.setTimeout background-timer cb ms))
|
|
|
|
|
|
2022-12-20 22:45:37 +08:00
|
|
|
(defn clear-timeout
|
|
|
|
|
[id]
|
2022-11-14 19:16:55 +01:00
|
|
|
(.clearTimeout background-timer id))
|
|
|
|
|
|
2022-12-20 22:45:37 +08:00
|
|
|
(defn set-interval
|
|
|
|
|
[cb ms]
|
2022-11-14 19:16:55 +01:00
|
|
|
(.setInterval background-timer cb ms))
|
|
|
|
|
|
2022-12-20 22:45:37 +08:00
|
|
|
(defn clear-interval
|
|
|
|
|
[id]
|
2022-11-14 19:16:55 +01:00
|
|
|
(.clearInterval background-timer id))
|