
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
dynamic-timer
Advanced tools
Schedule execution of a multi-time callback after delay milliseconds, automatic, intelligence and without bothering, the delay is calculated from different algorithms, e.g.: Lucas Sequence, Fibonacci Sequence, DaYan Series and Arithmetic Procession.
Schedule execution of a multi-time callback after delay milliseconds, automatic, intelligence and without bothering, the delay is calculated from different algorithms, e.g.: Lucas Sequence, Fibonacci Sequence, DaYan Series and Arithmetic Procession.
So, the next delay
will be generated by the specific strategy, but not a fixed one. This will take a high performance on long-polling, handshake, ping-pong, reconnect, task worker or something else.
npm install dynamic-timer
var dynamicTimer = require('dynamic-timer');
var dynamicTimeout = dynamicTimer([options]);
options
are including:
maxAttempts
for different strategy, even when you set the maxAttempts
, it can not greater than bellows:
maxAttempts
or next delay
greater than maxDelay
means Timer is overrunning, this property should be:
dynamicTimeout.state.STOP
dynamicTimeout.state.RESET
delay
s will be set to maxDelay
, equals dynamicTimeout.state.OVERLOAD
false
, if the property was set to true
, there is no necessary to do dynamicTimeout.start
Timer supports four strategies:
procession
Arithmetic Procession, equals dynamicTimeout.strategy.PROCESSION
, the sequence increases like:
1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21...
It is increasing placid, so when you set the seed
as 1000, the Timer will trigger after 1s, 3s, 5s, 7s, 11s...
not insipid 1s, 1s, 1s...
.
dayan
DaYan Series, equals dynamicTimeout.strategy.DAYAN
, the sequence increases like:
0, 2, 4, 8, 12, 18, 24, 32, 40, 50...
It is increasing placid too, but speedier then Arithmetic Procession, I like this algorithm most, so using it as default value for strategy
.
fibonacci
Fibonacci Sequence, equals dynamicTimeout.strategy.FIBONACCI
, the sequence increase like:
1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377...
It is increasing speedy, we can use this strategy to deal with some non-concurrent job.
lucas
Lucas Sequence, equals dynamicTimeout.strategy.LUCAS
, the sequence increase like:
1, 3, 4, 7, 11, 18, 29, 47, 76, 123, 199, 322, 521...
Lucas is similar to Fibonacci but increases speedier.
Notes: If you are interesting in these algorithms, you can take a test with the example/algorithm.js.
This event is triggered after delay
milliseconds, do your job in the callback:
dynamicTimeout.on('tick', function(){
console.log('#' + dynamicTimeout.attempts, 'next after', dynamicTimeout.delay);
})
This event is triggered after state has been changed.
dynamicTimeout.on('toll', function(state){
console.log('current state:', state);
})
Start the Timer, when autostart
set to true
, this event triggered nothing.
dynamicTimeout.start();
Stop the Timer, when current state of Timer was STOP
, this event triggered nothing.
dynamicTimeout.stop();
Stop the Timer, when current state of Timer was not RUNNING
, this event triggered nothing.
dynamicTimeout.pause();
Resume the Timer, when current state of Timer was not PAUSE
, this event triggered nothing.
dynamicTimeout.resume();
Reset the Timer to initial status.
// stop timer.
dynamicTimeout.reset(true);
The argument indicates whether stop the timer or not, if it was not passed or set to false
, just reset Timer and tick again from initial status.
The attempts Timer has run.
The next delay(milliseconds).
Current state of Timer, including:
dynamicTimeout.state.PAUSE
, equals pause
,dynamicTimeout.state.RESUME
, equals resume
,dynamicTimeout.state.RESET
, equals reset
,dynamicTimeout.state.RUNNING
, equals running
,dynamicTimeout.state.STOP
, equals stop
var dynamicTimer = require('../'),
util = require('util');
var dynamicTimeout = dynamicTimer({
seed:1000,
delay:1000,
strategy:dynamicTimer.strategy.PROCESSION,
maxAttempts:10,
maxDelay:4000,
overrun:dynamicTimer.state.STOP, // stop, reset, overload
autostart:false
});
dynamicTimeout.on('tick', function (o) {
util.log('#' + dynamicTimeout.attempts + ', next after ' + dynamicTimeout.delay + ' ms');
});
dynamicTimeout.on('toll', function (state) {
util.log(state);
});
util.log('start timer');
dynamicTimeout.start();
// test pause, resume and stop.
setTimeout(function () {
dynamicTimeout.pause();
}, 3000);
setTimeout(function () {
dynamicTimeout.resume();
}, 10000);
setTimeout(function () {
dynamicTimeout.resume();
}, 6000);
setTimeout(function () {
dynamicTimeout.stop();
}, 31000);
setTimeout(function () {
dynamicTimeout.stop();
}, 32000);
See more examples under
example
andtest
folders.
npm test
Copyright 2014 Tjatse
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
FAQs
Schedule execution of a multi-time callback after delay milliseconds, automatic, intelligence and without bothering, the delay is calculated from different algorithms, e.g.: Lucas Sequence, Fibonacci Sequence, DaYan Series and Arithmetic Procession.
The npm package dynamic-timer receives a total of 13 weekly downloads. As such, dynamic-timer popularity was classified as not popular.
We found that dynamic-timer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.