Разница между ревизией и дросселем - PullRequest
0 голосов
/ 24 января 2020

Я просто играл с операторами фильтрации Rx JS и мне было интересно, в чем разница между ревизией и газом со следующими настройками.

import { ThrottleConfig } from "rxjs/internal/operators/throttle";
import { throttleTime, startWith } from "rxjs/operators";
import { asyncScheduler } from "rxjs";
import { fromStdIn } from "../../utility";

const throttleConfig: ThrottleConfig = {
    leading: false,
    trailing: true
}

fromStdIn().pipe(
    throttleTime(2000, asyncScheduler, throttleConfig),
    startWith('Started')
).subscribe(evt=> console.log(`Double-typed! ${evt}`))
...