in reply to Re: Providing feedback to Web GUI (Mojolicious)
in thread Providing feedback to Web GUI (Mojolicious)
generates an SSE stream.#!/usr/bin/perl -- print "Content-Type: text/event-stream\n\n"; while(true){ print "event: server-time\n"; $num++; print "data: $num\n\n"; }
is a page to listen to SSE streams.<!DOCTYPE HTML> <html> <head> <title>Server-Side Event</title> <script type="text/javascript"> function invokeSSE(){ var source = new EventSource('http://localhost/sse.pl'); source.addEventListener('server-time', function(e) { document.getElementById('ticker').innerHTML = e.data + '<br>'; }, false); source.addEventListener('open', function(e) { //Connection Open }, false); source.addEventListener('error', function(e) { if (e.readyState == EventSource.CLOSED) { alert("Connection closed"); } }, false); } </script> </head> <body onload="invokeSSE()"> <div id="ticker" name="ticker"> [TIME] </div> </body> </html>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Providing feedback to Web GUI (Mojolicious)
by Corion (Patriarch) on Nov 20, 2013 at 17:49 UTC |