All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.imrafaelmerino.kafkacli.Message Maven / Gradle / Ivy

package com.github.imrafaelmerino.kafkacli;


import jsonvalues.JsObj;

public record Message(String key,
                      String value,
                      JsObj headers) {

    public Message {
        if (value == null || value.isEmpty())
            throw new IllegalArgumentException("Message value can not be null or empty");
    }
}







© 2015 - 2024 Weber Informatics LLC | Privacy Policy