Does DWR uses polling OR push based concept?

267 Views Asked by At

While DWR is said to be reverse AJAX technology, I wanted to understand if it is actually uses push based concept OR is in reality a polling based..

It would be great if you could elaborate the same with simple example to understand the concept better.

1

There are 1 best solutions below

1
Uwe Plonus On

DWR can use both depending on the browser used.

If the browser supports push DWR can use this.

If the browser does not support push then DWR will use a polling mechanism.

You can read all this in the documentation.