0

I am using jetty continuations and I was wondering if I can detect that the client has disconnected(closed connection to jetty server) from the server.

Thanks, Alfred

Alfred
  • 60,935
  • 33
  • 147
  • 186

1 Answers1

2

I don't know if there is a cleaner way to do it but, when you call continuation.resume() you will get an IllegalStateException if the client has disconnected. Just catch that exception.

Eduardo
  • 48
  • 5