io.avaje.json.stream.BytesJsonWriter Maven / Gradle / Ivy
package io.avaje.json.stream;
import io.avaje.json.JsonWriter;
/**
* JsonWriter optimised for returning json as byte array.
*/
public interface BytesJsonWriter extends JsonWriter {
/**
* Return the json result as byte array.
*/
byte[] result();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy