if i wanted to use kotlin data classes in infinisp...
# serialization
c
if i wanted to use kotlin data classes in infinispan, which has its own externalizer interface (and uses jboss marshaller behind the scenes) , is kotlinx serialization the right api to start with?
s
Probably no, if you already have marshaller/unmarshaller
c
right now i have javabeans that implement the marshalling in their shared base class, and I’d like to convert them to kotlin, and use data classes if possible
s
A lot of Java frameworks work fine with Kotlin data classes too