وحدة المؤقتات Node.js

❮ وحدات مدمجة


مثال

اكتب "مرحبًا" كل 500 مللي ثانية:

var myInt = setInterval(function () {
    console.log("Hello");
}, 500);

التعريف والاستخدام

توفر وحدة Timers طريقة جدولة وظائف ليتم استدعاؤها لاحقًا في وقت معين.

كائن Timer هو كائن عام في Node.js ، وليس من الضروري استيراده باستخدام requireالكلمة الأساسية.


طرق الموقتات

Method Description
clearImmediate() Cancels an Immediate object
clearInterval() Cancels an Interval object
clearTimeout() Cancels a Timeout object
ref() Makes the Timeout object active. Will only have an effect if the Timeout.unref() method has been called to make the Timeout object inactive.
setImmediate() Executes a given function immediately.
setInterval() Executes a given function at every given milliseconds
setTimeout() Executes a given function after a given time (in milliseconds)
unref() Stops the Timeout object from remaining active.

❮ وحدات مدمجة