4

I'm using socket.io, and I would like to know when a send() command finished. - is it possible? - is it possible in websockets?

Benjamin Gruenbaum
  • 270,886
  • 87
  • 504
  • 504
shacharz
  • 213
  • 3
  • 8

1 Answers1

1

The only way you can know, is by providing a callback when you send a message.
This invokes an ACK from the server.

Kurt Pattyn
  • 2,758
  • 2
  • 30
  • 42