Throttle
Details
A chain plugin that applies throttling to the stream before pushing it to its child subscription nodes.
Type
typescriptthrottle: (throttleTime: number) => Observable;
Example
typescriptimport { $, throttle } from "fluth"; const promise$ = $().use(throttle(100), consoleExec()); promise$.next(1); promise$.next(2); promise$.next(3);