public static class ObjectStream.Filter extends ObjectStream
ObjectLoader implementations can use this stream type when the object's content is available from a standard InputStream.
ObjectStream.Filter, ObjectStream.SmallStream| Constructor and Description |
|---|
ObjectStream.Filter(int type,
long size,
java.io.InputStream in)
Create a filter stream for an object.
|
public ObjectStream.Filter(int type,
long size,
java.io.InputStream in)
type - the type of the object.size - total size of the object, in bytes.in - stream the object's raw data is available from. This
stream should be buffered with some reasonable amount of
buffering.public int getType()
getType in class ObjectStreamConstants.public long getSize()
getSize in class ObjectStreampublic int available()
throws java.io.IOException
available in class java.io.InputStreamjava.io.IOExceptionpublic long skip(long n)
throws java.io.IOException
skip in class java.io.InputStreamjava.io.IOExceptionpublic int read()
throws java.io.IOException
read in class java.io.InputStreamjava.io.IOExceptionpublic int read(byte[] b,
int off,
int len)
throws java.io.IOException
read in class java.io.InputStreamjava.io.IOExceptionpublic boolean markSupported()
markSupported in class java.io.InputStreampublic void mark(int readlimit)
mark in class java.io.InputStreampublic void reset()
throws java.io.IOException
reset in class java.io.InputStreamjava.io.IOExceptionpublic void close()
throws java.io.IOException
close in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in class java.io.InputStreamjava.io.IOExceptionCopyright © 2012. All Rights Reserved.