xrtlibrary-timer
v1.0.4
Published
Timer module of XRT library.
Downloads
3
Readme
Read Me
Introduction
This package is a high-performance, high-precision timer implementation (a part of XRT library).
Installation
To install this package, type following command in your terminal:
npm install xrtlibrary-timer --save
And then, you can import this package in your NodeJS environment with following "require" statement.
var XRTLibTimer = require("xrtlibrary-timer");
API (Usage)
+------------------+-----------------------------------+ | API | Description | +------------------+-----------------------------------+ | SetImmediate() | Replacement for setImmediate(). | +------------------+-----------------------------------+ | ClearImmediate() | Replacement for clearImmediate(). | +------------------+-----------------------------------+ | SetTimeout() | Replacement for setTimeout(). | +------------------+-----------------------------------+ | ClearTimeout() | Replacement for clearTimeout(). | +------------------+-----------------------------------+ | SetInterval() | Replacement for setInterval(). | +------------------+-----------------------------------+ | ClearInterval() | Replacement for clearInterval(). | +------------------+-----------------------------------+