thrifty
thrifty copied to clipboard
Thrift for Android that saves you methods
Per #489, it's not currently possible to make use of TypeProcessor plugins without doing some Gradle magic. In #490 we made it _possible_ but not at all ergonomic. We need...
They all appear to be from Dokka, as documented in [this issue from 2021](https://github.com/Kotlin/dokka/issues/1833). This issue is just a reminder to come back and look at this in advance of...
addresses https://github.com/microsoft/thrifty/issues/370 Implementation based on the original thrift http transport with a few changes: * apache http client variant removed * it was weird to have multiple different implementations in...
Are there any plans to support the THttpClient from the original thrift implementation?
This newly-open-sourced JVM fuzz tester looks really interesting for testing the thrifty-schema loader: https://github.com/CodeIntelligenceTesting/jazzer The challenge with fuzz testing is providing correct random mutations; for our purposes we'd need to...
If you have a TypeProcessor that does stateful things, you could run into issues with that state remaining. Not sure if the static approach was intentional, but just mentioning.
This draft PR serves to track the work needed to enable thrifty-gradle-plugin for Android builds. Fixes #371
Sadly, I forgot to test the gradle plugin on actual Android projects, and (surprise!) it doesn't work. We need to hook in to the various Android variant collections and register...
I'm writing a TypeProcessor that adds a method in generated code for a thrift union type. Since the processor only gets the generated class as input parameter, it's rather hard...