Replies: 1 comment
-
Hi, thanks for sharing! Yes, We do use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I had an interesting case where, i was saving only 5 products to DB and each save transicional gets done, i sent an event bus to create a new event on my TimeLine [Activity Stream].
However because of the
.pipe(debounceTime(50))
only the latest event was showing.After a investigating the case with my manger, we came across of that solution, instead of use
.pipe(debounceTime(50))
we used.pipe(delay(50))
fromimport { delay } from "rxjs/operators";
, which solve our case perfectly.I am wondering if the Vendure has the same case, of corse if its uses TimeLine!!
Graph Example of the difference: https://reactive.how/debouncetime
Beta Was this translation helpful? Give feedback.
All reactions