abstract class EventSourceListener
EventSourceListener() |
open fun onClosed(eventSource: EventSource): Unit
TODO description. |
|
open fun onEvent(eventSource: EventSource, id: String?, type: String?, data: String): Unit
TODO description. |
|
open fun onFailure(eventSource: EventSource, t: Throwable?, response: Response?): Unit
Invoked when an event source has been closed due to an error reading from or writing to the network. Incoming events may have been lost. No further calls to this listener will be made. |
|
open fun onOpen(eventSource: EventSource, response: Response): Unit
Invoked when an event source has been accepted by the remote peer and may begin transmitting events. |