-
-
Notifications
You must be signed in to change notification settings - Fork 810
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refreshInterval less than 1 second #1103
Comments
Maybe this could be implemented by adding a Basically a string that will be parsed into a duration. When the unit is not set or can't be parsed, '1s' is assumed, leading to the default behavior. Otherwise the two values are multiplied. Otherwise we could use a float to handle the config and rewriting the scheduler to convert it into nanoseconds. Both ways shouldn't require anyone to touch their config. |
Before tackling this problem at all, I'd like to see a few valid use-cases for a faster refresh rate that have a practical application. I'm not yet convinced this is a problem that needs to be solved. |
@senorprogrammer I commented there: #1120 (comment) |
Solved by @ResamVi. Configurations now support an optional time unit, ie: |
@senorprogrammer @ResamVi Thanks, works well!!! |
I know this might sound crazy for a dashboard, but some modules can happily take a refresh rate of less than 1 second. It can be a stopwatch for instance...
The text was updated successfully, but these errors were encountered: