Adam Warski

Results 740 comments of Adam Warski

@kostaskougios Ah I see, yeah that's a problem. Yeah, I guess you'd have to start a "raw" virtual thread on the first callback that you receive, and in that virtual...

Let's leave this open as an idea for improving the actor API.

Ah ... we should get it implemented then :)

@cptwunderlich see https://github.com/softwaremill/magnolia/issues/552

From what I've found out, the OpenAPI specification that we generate from Tapir is correct - that is, there's no `audience` parameter to include. This can, however, be specified by...

Fails due to https://github.com/scala/bug/issues/13140

I don't think there's any support for this. What's the syntax in OpenAPI, and example code in Scala which should be mapped to such a schema? Maybe we could compute...

That's because the vertx interpreter handles only one route at a time: `endpoints.foreach(VertxCatsServerInterpreter[IO](options).route(_)(router))`. When converting a single endpoint to a route, the reject handler doesn't make sense (since it's single...

You're right, streaming is what ties an endpoint description to a particular implementation (here it's Ox, but it also might be FS2/cats-effect/http4s, or ZIO, or Akka, or Pekko). So the...

I don't think you'll be able to handle SSE with a `FetchBackend`, as there's no support for any kind of streaming there. I think the only streaming backends for JS...