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
If I loop a table in render function, each time debounce time hit, render function will rerun, which is a waste of cpu, and I'd like to make render function only run when I enter nomal mode, is it possible?
For example, I'd like to only show the severiest diagnostic, so I'm looping a table, as soon as I found one, break the loop. But the debounce time makes the behaviour unable to determine, because maybe when it loops to info, gets a n>0, breaks the loop, so that possible error is ignored
If I loop a table in render function, each time debounce time hit, render function will rerun, which is a waste of cpu, and I'd like to make render function only run when I enter nomal mode, is it possible?
For example, I'd like to only show the severiest diagnostic, so I'm looping a table, as soon as I found one, break the loop. But the debounce time makes the behaviour unable to determine, because maybe when it loops to info, gets a n>0, breaks the loop, so that possible error is ignored
The text was updated successfully, but these errors were encountered: