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

com.elopteryx.paint.upload.OnPartBegin Maven / Gradle / Ivy

package com.elopteryx.paint.upload;

import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.WritableByteChannel;

/**
 * A functional interface. An implementation of it must be passed in the
 * UploadParser#onPartBegin method to call it at the start of parsing for each part.
 */
public interface OnPartBegin {

    /**
     * The function to implement. When it's called depends on the size threshold.
     * @param context The upload context
     * @param buffer The byte buffer containing the first bytes of the part
     * @return A non-null channel to write out the part
     * @throws IOException If an error occurred with the channel
     */
    WritableByteChannel apply(UploadContext context, ByteBuffer buffer) throws IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy