Nabil Abdel-Hafeez
Nabil Abdel-Hafeez
The endpoint api is good isolated and should be easy to extract to its own module
We want to have a dev mode, that hot reloads classes after compile and that can be used at run time to change behavior. The hot reload means probably an...
Currently, we have a fixed config class that is required by zio-http to build binary codecs ```scala case class BinaryCodecWithSchema[A](codecFn: CodecConfig => BinaryCodec[A], schema: Schema[A]) ``` Since users can use...
HTTP/3 should be part of a [Netty 4.2 release in the near future](https://github.com/netty/netty/pull/15048). After it landed and #3472 is closed, we should add HTTP/3 support too
The current netty driver is HTTP/1.1 only. To support HTTP/2 we need a new driver. We should do #3472 first to ensure a clean impl.
Currently, the zio-http artifact contains a lot of different parts of zio-http exclusively. They are not separate maven artifacts. We want to change this, to support future changes/features. There should...
The method `outError` is missing a way to set a media type and there is no convenient way to set `error` to a custom value
We convert from netty by calling text on TextWebSocketFrame. This is only valid, if it is the final frame. Else we might have half a UTF8 char in a TextWebSocketFrame....