Denys Khanzhiyev
unread,Nov 7, 2012, 7:01:26 AM11/7/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to nodejs
I need a general solution to make calls to child as following
child.send(message,function(error, data){
});
and in the child
parent.on('message',function(message,callback){
...
callback(err,data);
});
I know I can do it myself by defining my own message wraper with UID and putting them in pushing them in array on send and poping on receive.
But maybe somebody have done that already ? Can't find any module for that.