mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Rename the files
This commit is contained in:
70
tns-core-modules/timer/timer.android.ts
Normal file
70
tns-core-modules/timer/timer.android.ts
Normal file
@@ -0,0 +1,70 @@
|
||||
/**
|
||||
* Android specific timer functions implementation.
|
||||
*/
|
||||
var timeoutHandler;
|
||||
var timeoutCallbacks = {};
|
||||
var timerId = 0;
|
||||
|
||||
function createHandlerAndGetId(): number {
|
||||
if (!timeoutHandler) {
|
||||
timeoutHandler = new android.os.Handler(android.os.Looper.getMainLooper());
|
||||
}
|
||||
|
||||
timerId++;
|
||||
return timerId;
|
||||
}
|
||||
|
||||
export function setTimeout(callback: Function, milliseconds = 0): number {
|
||||
const id = createHandlerAndGetId();
|
||||
const zoneBound = zonedCallback(callback);
|
||||
|
||||
var runnable = new java.lang.Runnable({
|
||||
run: () => {
|
||||
zoneBound();
|
||||
|
||||
if (timeoutCallbacks[id]) {
|
||||
delete timeoutCallbacks[id];
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
if (!timeoutCallbacks[id]) {
|
||||
timeoutCallbacks[id] = runnable;
|
||||
}
|
||||
|
||||
timeoutHandler.postDelayed(runnable, long(milliseconds));
|
||||
|
||||
return id;
|
||||
}
|
||||
|
||||
export function clearTimeout(id: number): void {
|
||||
if (timeoutCallbacks[id]) {
|
||||
timeoutHandler.removeCallbacks(timeoutCallbacks[id]);
|
||||
delete timeoutCallbacks[id];
|
||||
}
|
||||
}
|
||||
|
||||
export function setInterval(callback: Function, milliseconds = 0): number {
|
||||
const id = createHandlerAndGetId();
|
||||
const handler = timeoutHandler;
|
||||
const zoneBound = zonedCallback(callback);
|
||||
|
||||
var runnable = new java.lang.Runnable({
|
||||
run: () => {
|
||||
zoneBound();
|
||||
if (timeoutCallbacks[id]) {
|
||||
handler.postDelayed(runnable, long(milliseconds));
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
if (!timeoutCallbacks[id]) {
|
||||
timeoutCallbacks[id] = runnable;
|
||||
}
|
||||
|
||||
timeoutHandler.postDelayed(runnable, long(milliseconds));
|
||||
|
||||
return id;
|
||||
}
|
||||
|
||||
export var clearInterval = clearTimeout;
|
||||
Reference in New Issue
Block a user