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

net.dongliu.cute.http.body.InputSupplier Maven / Gradle / Ivy

The newest version!
package net.dongliu.cute.http.body;

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

/**
 * InputStream Supplier
 */
public interface InputSupplier extends Supplier {
    /**
     * Return a input stream for read.
     * Implementations should return a new, reproducible InputStream instance, when each time call this method.
     */
    @Override
    InputStream get();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy