Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/utils/debounce-event.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,9 @@ const eventsMap = {

// provide the events map when creating your middleware or meta reducer...
```

### Note

The debounceEvent event does not currently support asynchronous events (see [comment](https://github.com/rangle/redux-beacon/issues/286#issuecomment-423023024)).

This means that it is not possible to use `debounceEvent` with [`ensure`](./ensure.md) for the same [`EventDefinition`](../api/event-definition.md) (or the other way around).
6 changes: 6 additions & 0 deletions docs/utils/ensure.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,9 @@ const eventsMap = {
LOCATION_CHANGE: ensure(isValidPageView, pageview)
};
```

### Note

The ensure event does not currently support asynchronous events (see [comment](https://github.com/rangle/redux-beacon/issues/286#issuecomment-423023024)).

This means that it is not possible to use `ensure` with [`debounceEvent`](./debounce-event.md) for the same [`EventDefinition`](../api/event-definition.md) (or the other way around).