Getting Atmosphere transport used in Java

467 Views Asked by At

I'm using Atmosphere for development and I need to get the transport(websocket, long-polling etc.) through which the clients are connected to the server in my back-end.

Is there any method in AtmosphereResource to find out?

If not, how can I find out from the resource?

2

There are 2 best solutions below

0
On BEST ANSWER

AtmosphereResource.transport() will do the work.

0
On

After fiddling around a while with the methods, I found a way. Roughly, here is the answer.

AtmosphereResourceEvent are;

String transport = are.getResource().getRequest().getParameter("X-Atmosphere-Transport");

This will return a string with the transport specified in your Atmosphere Javascript AtmosphereRequest.