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

io.digdag.spi.StorageObject Maven / Gradle / Ivy

package io.digdag.spi;

import java.io.InputStream;

public class StorageObject
{
    private final InputStream inputStream;
    private final long contentLength;

    public StorageObject(InputStream inputStream, long contentLength)
    {
        this.inputStream = inputStream;
        this.contentLength = contentLength;
    }

    public InputStream getContentInputStream()
    {
        return inputStream;
    }

    public long getContentLength()
    {
        return contentLength;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy