Miguel Iglesias
Miguel Iglesias
On this note, is there a way to pass the ExecutionContext explicitly to call?
this is possibly related to https://github.com/xdotai/play-json-extensions/issues/58
@ashishkujoy you are right in that is not *actively* maintained, its original maintainer left long ago, and I have been "keeping the lights on". I will try to take a...
@cvogt perhaps I can summon you to help out here?
well this works: ``` sealed trait SomeTrait case class ClassA(a: String, b: String ) extends SomeTrait case class ClassB(a: String ) extends SomeTrait case class CompositeClass[A](name: String, generics: A )...
actually I realized you didn't care about serializing `SomeTrait`, therefore you don't needs this lib at all: ``` trait SomeTrait case class ClassA(a: String, b: String ) extends SomeTrait case...
personally I mostly have three use cases for this lib: 1 - case classes with default values 2 - sealed traits 3 - when I want to automate how case...
>back in 2018 was that this library had support for serialising case class of more than 22 fields which was not present in play json. that is in fact the...
>The main advantage for me is that this lib turnings thrown exceptions into deserialization errors that is a fair point in any case, I am as familiar with the codebase...
hey sorry the delay, I was on vacation! what do you think about adding a test that replicates the issue?