Package org.apache.storm.blobstore
Class BlobStore.BlobStoreFileInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.apache.storm.blobstore.InputStreamWithMeta
-
- org.apache.storm.blobstore.BlobStore.BlobStoreFileInputStream
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
- Enclosing class:
- BlobStore
protected class BlobStore.BlobStoreFileInputStream extends InputStreamWithMeta
Input stream implementation used for writing both the metadata containing the acl information and the blob data.
-
-
Constructor Summary
Constructors Constructor Description BlobStoreFileInputStream(BlobStoreFile part)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
available()
void
close()
long
getFileLength()
long
getVersion()
int
read()
int
read(byte[] b)
int
read(byte[] b, int off, int len)
-
Methods inherited from class java.io.InputStream
mark, markSupported, nullInputStream, readAllBytes, readNBytes, readNBytes, reset, skip, transferTo
-
-
-
-
Constructor Detail
-
BlobStoreFileInputStream
public BlobStoreFileInputStream(BlobStoreFile part) throws IOException
- Throws:
IOException
-
-
Method Detail
-
getVersion
public long getVersion() throws IOException
- Specified by:
getVersion
in classInputStreamWithMeta
- Throws:
IOException
-
read
public int read() throws IOException
- Specified by:
read
in classInputStream
- Throws:
IOException
-
read
public int read(byte[] b, int off, int len) throws IOException
- Overrides:
read
in classInputStream
- Throws:
IOException
-
read
public int read(byte[] b) throws IOException
- Overrides:
read
in classInputStream
- Throws:
IOException
-
available
public int available() throws IOException
- Overrides:
available
in classInputStream
- Throws:
IOException
-
getFileLength
public long getFileLength() throws IOException
- Specified by:
getFileLength
in classInputStreamWithMeta
- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classInputStream
- Throws:
IOException
-
-