培根.JS的速率限制



我正在尝试使用培根在访问外部 API 时创建速率限制.JS

速率限制工作正常,使用 bufferWithCount 和缓冲油门,但我想在一切都是平面映射时获得结果,而不是一次每个批次。

我已经尝试过结束,但它似乎没有被触发。

这里有一个小提琴:http://jsfiddle.net/9324jyLr/1/

var stream = new Bacon.Bus();
  stream
    .bufferWithCount(2)
    .bufferingThrottle(1000)
    .flatMap(batch => {
      batch = batch.map(x => x*2); //this should be an async API call returning Bacon.fromPromise(...)
      return Bacon.fromArray(batch);
    })
    // .bufferWithTime(1000)//one thang per interval
    .onValue(val => $('#log').append(val));
  for (var i=0; i<10; i++) {
    stream.push(i);
  }

您可以使用fold来组合结果,并.end()使总线结束。

stream
    .bufferWithCount(2)
    .bufferingThrottle(1000)
    .flatMap(batch => {
      batch = batch.map(x => x*2); //this should be an async op
      return Bacon.fromArray(batch);
    })
    .fold([], (arr, val) => { return arr.concat(val) })
    // .bufferWithTime(1000)//one thang per interval
    .onValue(val => $('#log').append(val+"n"));
  for (var i=0; i<10; i++) {
    stream.push(i);
  }
  stream.end()

http://jsfiddle.net/jdr9wuzy/

相关内容

  • 没有找到相关文章

最新更新