You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gaoshuguang 4b3ed4c085 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
..
LICENSE 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
README.md 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
inflight.js 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
package.json 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago

README.md

inflight

Add callbacks to requests in flight to avoid async duplication

USAGE

var inflight = require('inflight')

// some request that does some stuff
function req(key, callback) {
  // key is any random string.  like a url or filename or whatever.
  //
  // will return either a falsey value, indicating that the
  // request for this key is already in flight, or a new callback
  // which when called will call all callbacks passed to inflightk
  // with the same key
  callback = inflight(key, callback)

  // If we got a falsey value back, then there's already a req going
  if (!callback) return

  // this is where you'd fetch the url or whatever
  // callback is also once()-ified, so it can safely be assigned
  // to multiple events etc.  First call wins.
  setTimeout(function() {
    callback(null, key)
  }, 100)
}

// only assigns a single setTimeout
// when it dings, all cbs get called
req('foo', cb1)
req('foo', cb2)
req('foo', cb3)
req('foo', cb4)