skip to content

throttleTime

 

throttleTime will emit a value from the source stream and then ignore emissions for a given period of time. throttleTime can be configured { leading: boolean, trailing: boolean } to trigger emission of the first and/or last value in the period.

Also try this debounceTime vs throttleTime vs auditTime vs sampleTime head-to-head comparison

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const { rxObserver, palette } = require('api/v0.3');
const { merge, timer, from } = require('rxjs');
const { map, zip, throttleTime, takeUntil } = require('rxjs/operators');

// stream for coloring
const palette$ = from(palette);

// generate a colorized marble stream
const source$ = merge(timer(0, 330), timer(50, 180)).pipe(
    zip(palette$, Marble),
    map(setCurrentTime),
    takeUntil(timer(1000))
  );

source$
  .subscribe(rxObserver('source'));

source$.pipe(
    throttleTime(100, undefined, { leading: true }),
    map(setCurrentTime)
  )
  .subscribe(rxObserver('throttleTime(100) -- leading'));

source$.pipe(
    throttleTime(100, undefined, { trailing: true }),
    map(setCurrentTime)
  )
  .subscribe(rxObserver('throttleTime(100) -- trailing'));

source$.pipe(
    throttleTime(100, undefined, { leading: true, trailing: true }),
    map(setCurrentTime)
  )
  .subscribe(rxObserver('throttleTime(100) -- both'));

// helpers
// keeps colors, updated value to Date.now
function setCurrentTime({ color }){
  return Marble(Date.now(), color);
}

// creates a colored Marble
function Marble(value, color) {
  return {
    valueOf: ()=>value
    , color
  };
}

⚠️ Execution time is limited to 1000ms
0mssourcestartcomplete00 5050 230230 330330 410410 590590 660660 770770 950950 990990 throttleTime(100) -- leadingstartcomplete00 230230 410410 590590 770770 950950 throttleTime(100) -- trailingstartcomplete100100 330330 510510 690690 870870 10001000 throttleTime(100) -- bothstartcomplete00 100100 230230 330330 410410 590590 690690 770770 950950 10001000