Skip to content

A very simple implementation of Barrier as a coordination primitive

Notifications You must be signed in to change notification settings

ddopson/node-barrier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

build status

Overview

var Barrier = require('barrier');

var b = new Barrier();

b.once(function() {
  // do some stuff
});


fs.doSomethingAsync(function () {
  b.complete();
});

About

A very simple implementation of Barrier as a coordination primitive

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published