The options object used to initialize a kernel.
The valid Kernel status states.
The status states are:
unknown: The kernel status is unknown, often because the connection
is disconnected or connecting. This state is determined by the kernel
connection status.autorestarting: The kernel is restarting, initiated by the server.
This state is set by the services library, not explicitly sent from the
kernel.starting: The kernel is startingidle: The kernel has finished processing messages.busy: The kernel is currently processing messages.restarting: The kernel is restarting. This state is sent by the
Jupyter server.dead: The kernel is dead and will not be restarted. This state is set
by the Jupyter server and is a final state.Generated using TypeDoc
The valid kernel connection states.
Notes
The status states are:
connected: The kernel connection is live.connecting: The kernel connection is not live, but we are attempting to reconnect to the kernel.disconnected: The kernel connection is permanently down, we will not try to reconnect.When a kernel connection is
connected, the kernel status should be valid. When a kernel connection is eitherconnectingordisconnected, the kernel status will beunknownunless the kernel status wasdead, in which case it staysdead.