Skip to content

Instantly share code, notes, and snippets.

@adrianfaciu
Created August 28, 2017 15:40
Show Gist options
  • Save adrianfaciu/f39619b180b611c75e0738ab41aeb17f to your computer and use it in GitHub Desktop.
Save adrianfaciu/f39619b180b611c75e0738ab41aeb17f to your computer and use it in GitHub Desktop.
@Effect()
fetchDataWithDebounce$ = this.actions$
.ofType(actions.DATA_WITH_DEBOUNCE_FETCH)
.debounceTime(100)
// Call API service or some other processing
.map(() => ({ type: actions.DATA_WITH_DEBOUNCE_FETCH_SUCCESS }));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment