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

com.couchbase.lite.support.MultipartReaderDelegate Maven / Gradle / Ivy

package com.couchbase.lite.support;

import java.util.Map;

public interface MultipartReaderDelegate {
    void startedPart(Map headers);

    // obsolete
    void appendToPart(byte[] data);

    void appendToPart(final byte[] data, int off, int len);

    void finishedPart();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy