Constructor
new TimedHandler(period, handler)
Create and initialize a new Strophe.TimedHandler object.
Parameters:
Name | Type | Description |
---|---|---|
period |
number | The number of milliseconds to wait before the handler is called. |
handler |
function | The callback to run when the handler fires. This function should take no arguments. |
Methods
reset()
Reset the last called time for the Strophe.TimedHandler.
run() → {boolean}
Run the callback for the Strophe.TimedHandler.
Returns:
Returns the result of running the handler,
which is true
if the Strophe.TimedHandler should be called again,
and false
otherwise.
- Type
- boolean
toString() → {string}
Get a string representation of the Strophe.TimedHandler object.
Returns:
- Type
- string