You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library should try to handle this so that the timer will be invoked as soon as possible after the time interval expired. This means that we can not give any guarantees beyond what the underlying timer implementation already provides.
Suggested behavior:
If passing a time interval of 1.0 seconds, invoke the timer at least 1.0 seconds later (close approximation).
If passing a time interval of 0.000001 seconds, invoke the timer at least 0.000001 seconds later (probably more like 0.001 seconds).
If passing a time interval of 0.0 seconds, invoke the timer at least 0.0 seconds later (propably more like 0.001 seconds).
If passing a time internal of -1.0 seconds, invoke the timer at least 0.0 seconds later (probably more like 0.001 seconds).
Negative timeout values could be considered an invalid value. However, they're often the result of some time difference computation, so (IMO) it should be safe to pass them to this lib.
No description provided.
The text was updated successfully, but these errors were encountered: