Questions tagged [eventsource]

For questions relating to the HTML5 SSE (Server Sent Events) API; the JavaScript object is called EventSource.

215 questions
3
votes
1 answer

What HTTP Method does EventSource use to open a connection?

While in other questions people claimt EventSource is fairly well documented I have found it to be more implied then explicit in some cases. My understanding is that when you initialise an EventSource object in JS it opens a connection to your…
CS Dude
  • 421
  • 4
  • 14
3
votes
0 answers

SseEmitter MessageBodyWriter not found for media type=text/event-stream

I am trying to get server-sent events working with a JavaScript web client and a Spring Boot 1.5.7 application. I get the following error in the server log when the SseEmitter is returned from the REST endpoint when the client initially…
Ens
  • 308
  • 3
  • 15
3
votes
1 answer

c# PushStreamContent flush bug?

Did anyone of you tried to use PushStreamContent with WebApi? I've noticed strange behavior. Here is my code ( crappy one I know - Just Testing ) public class MsgModel { public MsgModel() { this.date =…
bunny1985
  • 762
  • 6
  • 21
3
votes
2 answers

Is it reliable to use EventSource to get User's online status?

I have used an EventSource method to get online status of active users on my website. In this following JavaScript code is inserted in every page var source = new EventSource("set_online.php"); Thus this code is executing set_online.php file…
Observer
  • 345
  • 1
  • 4
  • 21
3
votes
1 answer

.Net: subclassing subclasses of EventSource

I have a C# solution which spans many, many projects. I created a tracing class that inherits from Systme.Diagnostics.Tracing.EventSource, called MyCustomEventSource, which handles most of my tracing events. I want to create subclasses of this class…
user884248
  • 2,134
  • 3
  • 32
  • 57
3
votes
1 answer

PHP and events - flush to client does not happen until the script dies

I am trying to create a simple page that sends events to a web page but I cannot get the PHP to send the output before the page terminates. I am using PHP-FPM and php5.6.27. this is my simple HTML page: test…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/php" class="post-tag grid--cell" title="show questions tagged 'php'" rel="tag">php</a> <a href="../../questions/tagged/eventsource" class="post-tag grid--cell" title="show questions tagged 'eventsource'" rel="tag">eventsource</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Nov 17 '16 at 17:23">asked Nov 17 '16 at 17:23</time> <a href="../../users/583230/fabrizio" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/583230.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Fabrizio" /> </a> <div class="s-user-card--info"> <a href="../../users/583230/fabrizio" class="s-user-card--link">Fabrizio</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">3,734</li> <li class="s-award-bling s-award-bling__gold" title="2 gold badges">2</li> <li class="s-award-bling s-award-bling__silver" title="29 silver badges">29</li> <li class="s-award-bling s-award-bling__bronze" title="32 bronze badges">32</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-39698074"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>3</strong></span> <div class="viewcount">votes</div> </div> </div> <div class="status "> <strong>2</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/39698074/how-to-include-yaffle-event-source-polyfill" class="question-hyperlink">how to include yaffle event source polyfill</a></h3> <div class="excerpt">https://github.com/Yaffle/EventSource I used the above because I want to get promises to work in IE11, I have installed it with npm but not sure how I'm suppose to implement it. I tried import event-source-polyfill in my js file but that hasn't…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/polyfills" class="post-tag grid--cell" title="show questions tagged 'polyfills'" rel="tag">polyfills</a> <a href="../../questions/tagged/eventsource" class="post-tag grid--cell" title="show questions tagged 'eventsource'" rel="tag">eventsource</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Sep 26 '16 at 08:33">asked Sep 26 '16 at 08:33</time> <a href="../../users/6730305/stackjlei" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/6730305.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="stackjlei" /> </a> <div class="s-user-card--info"> <a href="../../users/6730305/stackjlei" class="s-user-card--link">stackjlei</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">9,485</li> <li class="s-award-bling s-award-bling__gold" title="18 gold badges">18</li> <li class="s-award-bling s-award-bling__silver" title="65 silver badges">65</li> <li class="s-award-bling s-award-bling__bronze" title="113 bronze badges">113</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-39252148"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>3</strong></span> <div class="viewcount">votes</div> </div> </div> <div class="status "> <strong>1</strong> answer </div> </div> </div> <div class="summary"> <h3><a href="../../questions/39252148/prevent-chrome-to-send-multiple-server-sent-requests" class="question-hyperlink">Prevent Chrome to send multiple server-sent requests</a></h3> <div class="excerpt">I have an endpoint that accepts text/event-stream, it basically sends two different types of events: stats and result. When the server sends result event and closes the connection. The problem is that the browser retries the connection because of…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/javascript" class="post-tag grid--cell" title="show questions tagged 'javascript'" rel="tag">javascript</a> <a href="../../questions/tagged/html" class="post-tag grid--cell" title="show questions tagged 'html'" rel="tag">html</a> <a href="../../questions/tagged/google-chrome" class="post-tag grid--cell" title="show questions tagged 'google-chrome'" rel="tag">google-chrome</a> <a href="../../questions/tagged/server-sent-events" class="post-tag grid--cell" title="show questions tagged 'server-sent-events'" rel="tag">server-sent-events</a> <a href="../../questions/tagged/eventsource" class="post-tag grid--cell" title="show questions tagged 'eventsource'" rel="tag">eventsource</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Aug 31 '16 at 14:18">asked Aug 31 '16 at 14:18</time> <a href="../../users/689144/burak-emre" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/689144.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="burak emre" /> </a> <div class="s-user-card--info"> <a href="../../users/689144/burak-emre" class="s-user-card--link">burak emre</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">1,501</li> <li class="s-award-bling s-award-bling__gold" title="4 gold badges">4</li> <li class="s-award-bling s-award-bling__silver" title="22 silver badges">22</li> <li class="s-award-bling s-award-bling__bronze" title="46 bronze badges">46</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-38387395"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>3</strong></span> <div class="viewcount">votes</div> </div> </div> <div class="status answered-accepted"> <strong>1</strong> answer </div> </div> </div> <div class="summary"> <h3><a href="../../questions/38387395/how-to-subscribe-to-eventstream-serverside" class="question-hyperlink">how to subscribe to eventstream - serverside</a></h3> <div class="excerpt">I have a url that return text/event-stream data so I am trying to connect and print everything I find: var url = "..." var source = new EventSource(url); source.addEventListener('message', function(e) { console.log(e.data); },…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/javascript" class="post-tag grid--cell" title="show questions tagged 'javascript'" rel="tag">javascript</a> <a href="../../questions/tagged/node.js" class="post-tag grid--cell" title="show questions tagged 'node.js'" rel="tag">node.js</a> <a href="../../questions/tagged/streaming" class="post-tag grid--cell" title="show questions tagged 'streaming'" rel="tag">streaming</a> <a href="../../questions/tagged/eventsource" class="post-tag grid--cell" title="show questions tagged 'eventsource'" rel="tag">eventsource</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jul 15 '16 at 03:25">asked Jul 15 '16 at 03:25</time> <a href="../../users/737051/john-mangual" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/737051.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="john mangual" /> </a> <div class="s-user-card--info"> <a href="../../users/737051/john-mangual" class="s-user-card--link">john mangual</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">7,718</li> <li class="s-award-bling s-award-bling__gold" title="13 gold badges">13</li> <li class="s-award-bling s-award-bling__silver" title="56 silver badges">56</li> <li class="s-award-bling s-award-bling__bronze" title="95 bronze badges">95</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-68032836"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>2</strong></span> <div class="viewcount">votes</div> </div> </div> <div class="status "> <strong>1</strong> answer </div> </div> </div> <div class="summary"> <h3><a href="../../questions/68032836/symfony-mercure-js-eventsource-don-t-send-cookie" class="question-hyperlink">Symfony / Mercure / JS EventSource don't send cookie</a></h3> <div class="excerpt">I've been blocking this issue for 2 days now. I'm trying to set up authentication for Mercure so that a customer can subscribe to "private" hubs. So I configured my environment variables as stipulated in the Symfony and Mercury documentation here…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/javascript" class="post-tag grid--cell" title="show questions tagged 'javascript'" rel="tag">javascript</a> <a href="../../questions/tagged/php" class="post-tag grid--cell" title="show questions tagged 'php'" rel="tag">php</a> <a href="../../questions/tagged/symfony" class="post-tag grid--cell" title="show questions tagged 'symfony'" rel="tag">symfony</a> <a href="../../questions/tagged/eventsource" class="post-tag grid--cell" title="show questions tagged 'eventsource'" rel="tag">eventsource</a> <a href="../../questions/tagged/mercure" class="post-tag grid--cell" title="show questions tagged 'mercure'" rel="tag">mercure</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jun 18 '21 at 09:38">asked Jun 18 '21 at 09:38</time> <a href="../../users/15467701/stollpy" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/15467701.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Stollpy" /> </a> <div class="s-user-card--info"> <a href="../../users/15467701/stollpy" class="s-user-card--link">Stollpy</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">35</li> <li class="s-award-bling s-award-bling__bronze" title="6 bronze badges">6</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-65843913"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>2</strong></span> <div class="viewcount">votes</div> </div> </div> <div class="status answered-accepted"> <strong>1</strong> answer </div> </div> </div> <div class="summary"> <h3><a href="../../questions/65843913/how-do-i-flush-to-event-stream-when-res-flush-does-not-work-node-js" class="question-hyperlink">How do I flush to event stream, when res.flush() does not work? (node.js)</a></h3> <div class="excerpt">I use express and node.js I have been working a long time on getting a loading bar to work, and I finally figured out to use res.flush() since res.write() does not work due to compression middle-ware (to my understanding). Now when I uploaded it to…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/node.js" class="post-tag grid--cell" title="show questions tagged 'node.js'" rel="tag">node.js</a> <a href="../../questions/tagged/express" class="post-tag grid--cell" title="show questions tagged 'express'" rel="tag">express</a> <a href="../../questions/tagged/eventsource" class="post-tag grid--cell" title="show questions tagged 'eventsource'" rel="tag">eventsource</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jan 22 '21 at 11:03">asked Jan 22 '21 at 11:03</time> <a href="../../users/11247692/peter-rosenberg" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/11247692.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Peter Rosenberg" /> </a> <div class="s-user-card--info"> <a href="../../users/11247692/peter-rosenberg" class="s-user-card--link">Peter Rosenberg</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">41</li> <li class="s-award-bling s-award-bling__silver" title="1 silver badges">1</li> <li class="s-award-bling s-award-bling__bronze" title="5 bronze badges">5</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-64786360"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>2</strong></span> <div class="viewcount">votes</div> </div> </div> <div class="status "> <strong>0</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/64786360/istio-ingress-gateway-configuration-for-eventsource" class="question-hyperlink">Istio ingress gateway configuration for EventSource</a></h3> <div class="excerpt">I am using Spring SSEEventEmitter library to publish events from server-side to client. Clients will subscribe for the event in first call and listen to server sent events. I have deployed the application on Kubernetes which is enabled with Istio.…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/spring-boot" class="post-tag grid--cell" title="show questions tagged 'spring-boot'" rel="tag">spring-boot</a> <a href="../../questions/tagged/kubernetes" class="post-tag grid--cell" title="show questions tagged 'kubernetes'" rel="tag">kubernetes</a> <a href="../../questions/tagged/istio" class="post-tag grid--cell" title="show questions tagged 'istio'" rel="tag">istio</a> <a href="../../questions/tagged/server-sent-events" class="post-tag grid--cell" title="show questions tagged 'server-sent-events'" rel="tag">server-sent-events</a> <a href="../../questions/tagged/eventsource" class="post-tag grid--cell" title="show questions tagged 'eventsource'" rel="tag">eventsource</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Nov 11 '20 at 12:22">asked Nov 11 '20 at 12:22</time> <a href="../../users/6657322/basavaraj-dhanashetti" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/6657322.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Basavaraj Dhanashetti" /> </a> <div class="s-user-card--info"> <a href="../../users/6657322/basavaraj-dhanashetti" class="s-user-card--link">Basavaraj Dhanashetti</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">21</li> <li class="s-award-bling s-award-bling__bronze" title="3 bronze badges">3</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-62538985"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>2</strong></span> <div class="viewcount">votes</div> </div> </div> <div class="status "> <strong>2</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/62538985/server-sent-event-not-working-error-net-err-incomplete-chunked-encoding-200" class="question-hyperlink">Server Sent Event not working:: Error:: net::ERR_INCOMPLETE_CHUNKED_ENCODING 200</a></h3> <div class="excerpt">I have been trying to get basic server sent events up and running using following code(nodejs+express for backend and React on frontend), however the onmessage is not triggering when i try to update the count through terminal. Here is the flow: Get…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/node.js" class="post-tag grid--cell" title="show questions tagged 'node.js'" rel="tag">node.js</a> <a href="../../questions/tagged/reactjs" class="post-tag grid--cell" title="show questions tagged 'reactjs'" rel="tag">reactjs</a> <a href="../../questions/tagged/express" class="post-tag grid--cell" title="show questions tagged 'express'" rel="tag">express</a> <a href="../../questions/tagged/next.js" class="post-tag grid--cell" title="show questions tagged 'next.js'" rel="tag">next.js</a> <a href="../../questions/tagged/eventsource" class="post-tag grid--cell" title="show questions tagged 'eventsource'" rel="tag">eventsource</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jun 23 '20 at 16:02">asked Jun 23 '20 at 16:02</time> <a href="../../users/2064037/rakesh-kumar" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/2064037.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Rakesh_Kumar" /> </a> <div class="s-user-card--info"> <a href="../../users/2064037/rakesh-kumar" class="s-user-card--link">Rakesh_Kumar</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">1,442</li> <li class="s-award-bling s-award-bling__gold" title="1 gold badge">1</li> <li class="s-award-bling s-award-bling__silver" title="14 silver badge">14</li> <li class="s-award-bling s-award-bling__bronze" title="30 bronze badge">30</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-60955678"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>2</strong></span> <div class="viewcount">votes</div> </div> </div> <div class="status "> <strong>1</strong> answer </div> </div> </div> <div class="summary"> <h3><a href="../../questions/60955678/sse-redis-how-to-recover-messages-sent-when-sse-goes-offline" class="question-hyperlink">SSE/Redis - how to recover messages sent when SSE goes offline</a></h3> <div class="excerpt">On a website I have a very simple Live chat setup that uses SSE/Redis and pub/sub structure. The basic setup (without going into details) is: Client-side using EventSource Opens SSE connection and subscribes to live events sent by SSE daemon.…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/javascript" class="post-tag grid--cell" title="show questions tagged 'javascript'" rel="tag">javascript</a> <a href="../../questions/tagged/redis" class="post-tag grid--cell" title="show questions tagged 'redis'" rel="tag">redis</a> <a href="../../questions/tagged/server-sent-events" class="post-tag grid--cell" title="show questions tagged 'server-sent-events'" rel="tag">server-sent-events</a> <a href="../../questions/tagged/eventsource" class="post-tag grid--cell" title="show questions tagged 'eventsource'" rel="tag">eventsource</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Mar 31 '20 at 16:46">asked Mar 31 '20 at 16:46</time> <a href="../../users/2363857/denis" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/2363857.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Denis" /> </a> <div class="s-user-card--info"> <a href="../../users/2363857/denis" class="s-user-card--link">Denis</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">322</li> <li class="s-award-bling s-award-bling__gold" title="1 gold badge">1</li> <li class="s-award-bling s-award-bling__silver" title="4 silver badge">4</li> <li class="s-award-bling s-award-bling__bronze" title="15 bronze badge">15</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-58970309"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>2</strong></span> <div class="viewcount">votes</div> </div> </div> <div class="status "> <strong>2</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/58970309/why-do-i-get-many-sse-request-that-slow-down-my-webpage-in-my-nuxt-js-project" class="question-hyperlink">Why do I get many SSE request that slow down my webpage in my NUXT.js project?</a></h3> <div class="excerpt">I have a project implemented using NUXT.js (ssr mode). Every time I refresh pages, I got three or four sse requests (like _loading/sse) in the network console. Those sse requests are slow and would fail in the end and they cause page loading time…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/vue.js" class="post-tag grid--cell" title="show questions tagged 'vue.js'" rel="tag">vue.js</a> <a href="../../questions/tagged/nuxt.js" class="post-tag grid--cell" title="show questions tagged 'nuxt.js'" rel="tag">nuxt.js</a> <a href="../../questions/tagged/eventsource" class="post-tag grid--cell" title="show questions tagged 'eventsource'" rel="tag">eventsource</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Nov 21 '19 at 08:23">asked Nov 21 '19 at 08:23</time> <a href="../../users/2301368/james" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/2301368.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="James" /> </a> <div class="s-user-card--info"> <a href="../../users/2301368/james" class="s-user-card--link">James</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">157</li> <li class="s-award-bling s-award-bling__silver" title="1 silver badges">1</li> <li class="s-award-bling s-award-bling__bronze" title="6 bronze badges">6</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="s-pagination pager fr"> <a class="s-pagination--item" href="../../questions/tagged/eventsource_page=3" rel="prev" title="Go to page 3">Prev </a> <a class="s-pagination--item" href="../../questions/tagged/eventsource_page=1" rel="" title="Go to page 1">1</a> <a class="s-pagination--item" href="../../questions/tagged/eventsource_page=2" rel="" title="Go to page 2">2</a> <a class="s-pagination--item" href="../../questions/tagged/eventsource_page=3" rel="" title="Go to page 3">3</a> <div class="s-pagination--item s-pagination--item__clear">…</div> <a class="s-pagination--item" href="../../questions/tagged/eventsource_page=14" rel="" title="Go to page 14">14</a> <a class="s-pagination--item" href="../../questions/tagged/eventsource_page=15" rel="" title="Go to page 15">15</a> <a class="s-pagination--item" href="../../questions/tagged/eventsource_page=5" rel="next" title="Go to page 5"> Next</a> </div> </div> </div> </div> </div> <script src="../../static/js/stack-icons.js"></script> <script src="../../static/js/fromnow.js"></script> </body> </html>