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

com.redhat.ceylon.cmr.spi.SizedInputStream Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.redhat.ceylon.cmr.spi;

import java.io.InputStream;

/**
 * An InputStream holder which may know its size
 */
public class SizedInputStream {

    public final InputStream inputStream;
    /**
     * Can be -1 if we don't know its size
     */
    public final long size;
    
    public SizedInputStream(InputStream inputStream, long size){
        this.inputStream = inputStream;
        this.size = size;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy