Ross A. Baker
Ross A. Baker
Thanks, @kutyel! I ran into this on the [googleapis](https://github.com/googleapis/googleapis/), if you're looking for a good real-world example. We're enjoying the library very much, and I'll be more than happy to...
I've got a few projects in queue ahead of it, but if nobody beats me to this, I would like to add scalaz-stream support.
:+1: I'm doing a presentation in tut tonight (which is The Way To Do Presentations) and just had to add a `tut:invisible` to get my typeclass instances into implicit scope.
I always thought it was coupled to cats-effect, but it even works with `MonadError`, so even the original request for `Future` should be covered.
Per the HTTP spec, these messages have no body. Per http4s tradition, we try to render a body using either a Content-Length (if we know we've buffered the whole thing...
Have you seen [keypool](https://github.com/typelevel/keypool)? It's based on`Resource`, which I think offers a much safer API. Ember uses keypool, and if someone retrofitted Blaze, I think we'd retire the existing `PoolManager`.
Some [thinking out loud on Gitter](https://gitter.im/http4s/http4s?at=5d6d27ea5b9a174fdf22b2c9).
I'm not actively working on it. A reliable reproduction would help a lot. The `TickWheelExecutor` is a resource, which is used [here]( https://github.com/http4s/http4s/blob/0954bdcfc8db32a35af35fe1f7108fcd8d3bf5af/blaze-server/src/main/scala/org/http4s/server/blaze/BlazeServerBuilder.scala#L321). That shouldn't close the tick wheel until...
That's a great question. I imagine this is a solved problem in netty. It's hard when the implementation doesn't throw anything more specific than `IOException`. I'd love to find a...
This is way better than we do, but still not great: https://github.com/netty/netty/blob/f17bfd0f64189d91302fbdd15103788bf9eabaa2/handler/src/main/java/io/netty/handler/ssl/SslHandler.java#L1100