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

io.descoped.dc.api.handler.DocumentParserFeature Maven / Gradle / Ivy

The newest version!
package io.descoped.dc.api.handler;

import java.io.InputStream;
import java.util.function.Consumer;

public interface DocumentParserFeature {

    byte[] serialize(Object document);

    Object deserialize(byte[] source);

    void tokenDeserializer(InputStream source, Consumer entryCallback);

}