chiradip opened a new issue, #2206:
URL: https://github.com/apache/iggy/issues/2206

   **Title:** `[Java SDK] Implement pluggable serialization framework`
   
   **Description:**
   Current Message class only supports basic byte[] and String, requiring users 
to implement their own serialization.
   
   **Proposed Solution:**
   ```java
   // Pluggable serializers
   public interface MessageSerializer<T> {
       byte[] serialize(T data);
       Map<String, String> headers(T data);
   }
   
   public interface MessageDeserializer<T> {
       T deserialize(byte[] data, Map<String, String> headers);
   }
   
   // Built-in serializers
   - JsonSerializer/Deserializer
   - AvroSerializer/Deserializer
   - ProtobufSerializer/Deserializer
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to