Marco Ferrer

Results 56 comments of Marco Ferrer

I think his case relates to the fact that Kotlin doesnt have a concept of checked exceptions. Any method invocation could potentially throw an instance of `Throwable`. This is the...

I’ll be able to give you a more explicit answer a little later. But in the mean time this example might be of some use. It’s a demo of a...

When the network disconnects the grpc server should invoke the cancellation callback as well. I havent tried it explicitly but it is mentioned in [ServerCall.onCancel()](https://github.com/grpc/grpc-java/blob/80c3c992a66aa21ccf3e12e38000316e45f97e64/api/src/main/java/io/grpc/ServerCall.java#L75)

I’ve ran into this issue before but haven’t had time to get it resolved. The last time I dug into it there were two things that need to be resolved....

Sorry that was a typo. I meant to say that the protobuf plugin would have to be made aware of the kotlin multiplatform plugin. I dont think the source set...

I took some time to track down the issue I filed related to this. Linking it here for visibility [KT-29156](https://youtrack.jetbrains.com/issue/) I dont see this getting resolved anytime soon but its...

Thats a great question. The choice to stick with channels over flows is mostly driven by this blog post [Cold flows, hot channels](https://medium.com/@elizarov/cold-flows-hot-channels-d74769805f9). Streaming rpcs are backed by an underlying...

Thanks for submitting this! Since we aren’t embedding the dependency in within the plugin this error is expected. One alternative to adding the maven repository within the build script block...

So I think the vararg ext is a valid use case and probably something that could be added to the default generator. As for the nested builder, from ```0.1.3``` and...

In the mean time you can use this script to generate the exts until the next release. Config ``` generator_scripts { script_path: "VarArgExtensionGenerator.kts" } ``` Script ``` import com.github.marcoferrer.krotoplus.generators.Generator import...