pcarrier
12/01/2020, 5:11 AM@JsonTypeInfo(use = JsonTypeInfo.Id.NAME)
sealed class Command {
@JsonTypeName("ResetCursorPosition")
data class ResetCursorPosition(
val dataSource: String, val position: Instant
) : Command()
}
which causes a failure in assertTypeUniqueness
; might I be missing some semi-obvious gotchas with the current implementation? Is it worth trying to minimize to a reproduction case? Otherwise the DX has been great so far.Shane Myrick
12/01/2020, 6:00 AM