Skip to content
This repository has been archived by the owner on Jan 6, 2021. It is now read-only.

Performance updates and better Error handling support.

Compare
Choose a tag to compare
@NathanGRomano NathanGRomano released this 26 Aug 14:50
· 19 commits to master since this release

The core component receiver just went through some over hauling. The receiver is much faster and the memory footprint has been reduced significantly compared to the previous version.

Error handling can be achieved like this

bus.in(function (err, msg, sock, next) {
  // handle errors incoming
});

bus.on(function (err, msg, next) {
  // handle errors ongoing
});

bus.out(function (err, msg, sock, next) {
  // handle errors outgoing
});