Interface ConfigSerde<T>


  • public interface ConfigSerde<T>
    • Method Detail

      • serialize

        byte[] serialize​(T obj)
      • serializeToString

        String serializeToString​(T obj,
                                 boolean skipNull)
        Serialize object to String
        Parameters:
        obj - to be serialize
        skipNull - if true, then skip serialization of any field with null value. This can be used to reduce the size of the resulting String.
        Returns:
        String serialization of the input
      • deserialize

        T deserialize​(byte[] bytes)