Enum gloo_net::eventsource::State
source · pub enum State {
Connecting,
Open,
Closed,
}
Available on crate feature
eventsource
only.Expand description
The state of the EventSource.
See EventSource.readyState
on MDN
to learn more.
Variants§
Connecting
The connection has not yet been established.
Open
The EventSource connection is established and communication is possible.
Closed
The connection has been closed or could not be opened.