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

com.facebook.airlift.http.client.FileBodyGenerator Maven / Gradle / Ivy

The newest version!
package com.facebook.airlift.http.client;

import com.google.common.annotations.Beta;

import java.io.OutputStream;
import java.nio.file.Files;
import java.nio.file.Path;

import static java.util.Objects.requireNonNull;

@Beta
public class FileBodyGenerator
        implements BodyGenerator
{
    private final Path path;

    public FileBodyGenerator(Path path)
    {
        this.path = requireNonNull(path, "path is null");
    }

    public Path getPath()
    {
        return path;
    }

    @Override
    public void write(OutputStream out)
            throws Exception
    {
        Files.copy(path, out);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy