Skip to content
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

Non-debounce option #44

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Non-debounce option #44

wants to merge 1 commit into from

Conversation

norami
Copy link

@norami norami commented Sep 18, 2018

Normally, async computed properties work with debouncing
in the way the result of a change is not committed if other changes are triggered before the result is committed.
For example, if a source property is continuously changing every 100ms and API call takes 500ms,
normal async computed properties will not be changed until the change of the source property stops.

With this change set and non-debounce option, async computed properties will be updated with the last source value.

I think this behavior should be default in the next major version while non-debounce option is inevitable in most common usage.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant