eventsource-android icon indicating copy to clipboard operation
eventsource-android copied to clipboard

An Android EventSource (SSE - Server Sent Events) Library

Results 13 eventsource-android issues
Sort by recently updated
recently updated
newest added

Current library is **not supported anymore**. Last commit 3 years ago!!!!

java.lang.ExceptionInInitializerError at org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink$Boss.(:190) at org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.(:79) at org.jboss.netty.channel.socket.nio.NioClientSocketChannelFactory.(:162) at org.jboss.netty.channel.socket.nio.NioClientSocketChannelFactory.(:108) at tylerjroach.com.eventsource_android.EventSource.(:68) at tylerjroach.com.eventsource_android.EventSource.(:136) at tylerjroach.com.eventsource_android.EventSource.(:126) I am using your library, I have 2 apis to point to, one test mode...

While getting the Message event data on onMessage() call back if we push continuously for some time it gives empty messageEvent.data. For example, if I receive message event data 10...

this is the 4 library that is testing. and is probably the best. but one thing is not working properly:( I'm finishing the long polling/streem. my http handler for connect...

Thank you for the development. Although I saw some improvements to be done in the README, so here they are. Thanks!

I am doing: ``` private SSEHandler sseHandler = new SSEHandler(); private EventSource eventSource; private void startEventSource(String eventUrl, Map extraHeaderParameters) { eventSource = new EventSource.Builder(eventUrl) .eventHandler(sseHandler) .build(); eventSource.connect(); } private void...

I observed that many times, I don't receive the data being published by server, but I also haven't received `onError` callback. Can we have a mechanism to setup reconnect if...

Hi, Would it be possible to modify the code to support communication via HTTP Proxy on Android ? I have been trying to use Charles to troubleshoot some issues and...

It would be great if there was a callback after the eventsource successfully reconnects.

enhancement

Instead of using replaceFirst to remove the first space withing the sting, we now explicitly check the first character of the string. This ensures that no whitespace inside the value...