Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Status

Current state: Under Discussion Adopted

Discussion thread: here 

JIRA: KAFKA-8455 

...

Code Block
languagejava
titleNothingSerde
static public final class VoidSerde extends WrapperSerde<Void> {
}

public class VoidSerializer implements Serializer<Void> {
}

public class VoidDeserializer implements Deserializer<Void> {
}

If not null parameters passed then an java.lang.IllegalArgumentException will be thrown.

Proposed Changes

I want to add VoidSerde to Serdes class.

Compatibility, Deprecation, and Migration Plan

There is are no compatibility issues here.

...