python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
KTable-KTable FK join: can't select foreign key serde
summary
I'm trying to do a KTable-KTable foreign-key join, but I get an error because the Kafka Streams is
trying to use a String serde for the foreign key.
I want it to use a Kotlinx Serialization se...
aSemy
Votes: 0
Answers: 1
Kotlin serialization plugin does not generate serializers in Gradle project
I'm trying to use the Kotlinx Serialization libraries and the associated Gradle plugin. It's supposed to generate serializers for when when I annotate a class with @Serializable, like this:
@Serializa...
Silver Quettier
Votes: 0
Answers: 0
How to make proguard keep kotlinx serializers for objects?
i have a kotlin class and an object
@Serializable
@SerialName("Cl")
class Cl(...)
@Serializable
@SerialName("Obj")
object Obj
and my proguard is configured like this
-keepclassm...
Noam Freeman
Votes: 0
Answers: 1
polymorphic kotlinx serialization fails on object after obfuscation
i have a polymorphic type that is implemented by objects and classes.
sealed interface Base
@Serializable
@SerialName("Sub")
class Sub(...) : Base
@Serializable
@SerialName("Obj"...
Noam Freeman
Votes: 0
Answers: 1