okhttp-sse / okhttp3.sse / EventSourceListener

EventSourceListener

abstract class EventSourceListener

Constructors

<init>

EventSourceListener()

Functions

onClosed

open fun onClosed(eventSource: EventSource): Unit

TODO description.

onEvent

open fun onEvent(eventSource: EventSource, id: String?, type: String?, data: String): Unit

TODO description.

onFailure

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.

onOpen

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.