HostState
type HostState = "starting" | "ready" | "draining" | "stopped"Lifecycle state of a FlareHost, observable via FlareHost.state.
Runtime advances this state automatically, and application code treats it as read-only.
"starting"- Host is initializing and not yet accepting requests."ready"- Host is accepting requests."draining"- Graceful shutdown is in progress and new requests receive503."stopped"- Teardown is complete.
Learn: Lifecycle