DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block | ||
|---|---|---|
| ||
@deprecated(since = "3.8.0")
trait Decoder[T] {
def fromBytes(bytes: Array[Byte]): T
} |
Proposed Changes
- Introduce a new java interface
org.apache.kafka.tools.api.Decoderto replace scala trait kafka.serializer.Decoder - deprecate all "class names" of kafka.serializer.Decoder implementations. That includes
kafka.serializer.DefaultDecoder,kafka.serializer.StringDecoder,kafka.serializer.LongDecoder,kafka.serializer.IntegerDecoderÂ
Compatibility, Deprecation, and Migration Plan
...