Skip to content

First release

Compare
Choose a tag to compare
@grimmerk grimmerk released this 02 May 18:05
· 197 commits to master since this release
b28dd6e

https://www.npmjs.com/package/d4c-queue/v/1.0.0

Features:

  • global usage
D4C.wrap(asyncFun, { tag: "queue1" })("asyncFun_arg1", "asyncFun_arg2");
  • instance usage
const d4c = new D4C();
d4c.iwrap(asyncFun, { tag: "queue1" })("asyncFun_arg1", "asyncFun_arg2");
  • decorator usage.
@D4C.register(Symbol("jojo"))
class ServiceAdapter {
  @D4C.synchronized
  client_send_message() {
  }
}