Top "Long-polling" questions

In web programming, long-polling is an emulation of pushing data, implemented by repeated polling with delayed response.

Long Polling with Spring's DeferredResult

The client periodically calls an async method (long polling), passing it a value of a stock symbol, which the server …

spring spring-mvc long-polling server-sent-events http-streaming
Implementing long polling in an asynchronous fashion

Is it possible to take an HTTPServletRequest away from its thread, dissolve this thread (i.e. bring it back to …

java multithreading spring servlets long-polling
Manually set transport type on a Spring + Sockjs application

I need to install an application on a non JEE7 compliant server. I am using Spring + Stomp + SocksJs for realtime …

java spring long-polling spring-websocket sockjs
What technology does Google Drive use to get real-time updates?

What technology does Google Drive use to do real-time? When I type in a Google Drive document that is being …

websocket real-time long-polling server-sent-events
Long polling freezes browser and block other ajax request

I am trying to implement long polling in my Spring-MVC Web App but it freezes my browser and other request …

java jquery ajax spring-mvc long-polling