Or you could have something return something
function something () {
.. hardcore processing ..
return something; // return your self
}
setInterval(something(), 1000);
On Friday, April 20, 2012 at 9:31 AM, Oliver Leics wrote:
> If you really rely on setInterval:
>
> var intervalTimer
> function something() {
> .. do something..
> if(!intervalTimer)
> intervalTimer = setInterval(something, 1000)
> }
> something()
>
> --
> Job Board: http://jobs.nodejs.org/
> Posting guidelines:
> https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
> You received this message because you are subscribed to the Google
> Groups "nodejs" group.
> To post to this group, send email to [email protected]
> (mailto:[email protected])
> To unsubscribe from this group, send email to
> [email protected]
> (mailto:[email protected])
> For more options, visit this group at
> http://groups.google.com/group/nodejs?hl=en?hl=en
>
>
--
Job Board: http://jobs.nodejs.org/
Posting guidelines:
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en