James Ward
James Ward
Loving this progress! Thank you @bitspittle :)
This is awesome! I'm giving it a try and hitting a strange runtime exception. Code: ``` fun main() = session { val rpc = BarsRPC(Config.barsUrl) var loaded by liveVarOf(false) var...
While not all Kotlin libraries put the dakka docs into the javadoc.jar it definitely is possible and we do it for example with grpc-kotlin. This allows us to get the...
Also note that the javadoc.jar is also empty for the pk-codegen-java library.
For now this will have to be implemented with `sealed class` https://kotlinlang.org/docs/sealed-classes.html
Are you trying to read the WebJar asset's contents in a running Play app or in an sbt plugin?
Here is how I'd do it: ``` val path = new WebJarAssetLocator().getFullPath("react", "react.min.js") val maybeReactMinJs = Play.current.resourceAsStream(path).map { resource => Source.fromInputStream(resource).mkString } ``` This uses `webjars-locator`. Here are my deps:...
Seems like something grpc-kotlin could provide a nice wrapper around but I don't think it currently does.
They should be in your project's `build` dir. If not, I will likely need a project that reproduces the issue.
I think @lowasser will have some thoughts on this. It seems at least theoretically possible to have the request queue fill with idle connections just consuming a file handle when...