socketio / socket.io-redis-emitter

The Socket.IO Redis emitter, allowing to communicate with a group of Socket.IO servers from another Node.js process.
https://socket.io/docs/v4/redis-adapter/
MIT License
721 stars 121 forks source link

Does it support Acknowledgement as in main Socket.io emitter? #51

Closed subenksaha closed 7 years ago

subenksaha commented 7 years ago

I am trying to pass acknowledgement function while emitting to client but it's not working but in socket.io node process it is working file. here is my code below:

io
.to(socketId)
.emit("event", data,function (err,message) {
     console.info(message);
     console.error(err);
});

the callback function is not called and in java client i am gutting ack function null.

darrachequesne commented 7 years ago

Duplicate of https://github.com/socketio/socket.io-emitter/issues/50.