Currently, the Ring spec focuses on final response statuses (200–599) and doesn’t explicitly cover informational responses (1xx), such as 103 Early Hints RFC 8297, MDN.
This issue is to open a discussion on how (or whether) the Ring spec should accommodate informational response types, particularly for use cases like Early Hints that can improve performance in certain server setups.
Of all the 1xx status codes, I think only 103 Early Hints is worth considering for standardization in ring.
Jetty has support for this via the CompletableFuture<Void> writeInterim(int status, HttpFields headers) method