public interface ObjectStream<T>
Objects from a stream.
Design Decision:
This interface provides a means for iterating over the
objects in a stream, it does not implement Iterator or
Iterable because:
Iterator.next() and
Iterator.hasNext() are declared as throwing no checked
exceptions. Thus the IOExceptions thrown by read() would
have to be wrapped in RuntimeExceptions, and the compiler would be
unable to force users of this code to catch such exceptions.Iterable would mean either silently calling
reset() to guarantee that all items were always seen on each
iteration, or documenting that the Iterable only iterates over the remaining
elements of the ObjectStream. In either case, users not reading the
documentation carefully might run into unexpected behavior.ObjectStreamException| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes the
ObjectStream and releases all allocated
resources. |
T |
read()
Returns the next object.
|
void |
reset()
Repositions the stream at the beginning and the previously seen object sequence
will be repeated exactly.
|
T read() throws IOException
IOExceptionvoid reset()
throws IOException,
UnsupportedOperationException
void close()
throws IOException
ObjectStream and releases all allocated
resources. After close was called its not allowed to call
read or reset.IOExceptionCopyright © 2016 The Apache Software Foundation. All rights reserved.