rules
rules copied to clipboard
how to call a custom nodejs function in durable?
var d = require('durable'); function abc(data){ console.log(data); } d.ruleset('test', function() { whenAll: m.subject == 'World' run:abc(m)//can't call this function });
d.post('test', {subject: 'World'});