S - the type of the source/input streamT - the type of this streampublic abstract class FilterObjectStream<S,T> extends Object implements ObjectStream<T>
ObjectStreams.
Filtering streams take an existing stream and convert its output to something else.
| Modifier and Type | Field and Description |
|---|---|
protected ObjectStream<S> |
samples |
| Modifier | Constructor and Description |
|---|---|
protected |
FilterObjectStream(ObjectStream<S> samples) |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes the
ObjectStream and releases all allocated
resources. |
void |
reset()
Repositions the stream at the beginning and the previously seen object sequence
will be repeated exactly.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitreadprotected final ObjectStream<S> samples
protected FilterObjectStream(ObjectStream<S> samples)
public void reset()
throws IOException,
UnsupportedOperationException
ObjectStreamreset in interface ObjectStream<T>IOExceptionUnsupportedOperationExceptionpublic void close()
throws IOException
ObjectStreamObjectStream and releases all allocated
resources. After close was called its not allowed to call
read or reset.close in interface ObjectStream<T>IOExceptionCopyright © 2016 The Apache Software Foundation. All rights reserved.