public interface Streamable
The Streamable interface provides a resource adapter's view of the data that has been set in a Record instance by a component.
The Streamable interface is not directly used by a component. It is used by a resource adapter implementation. A component uses Record or any derived interfaces to manage records.
Record| Modifier and Type | Method and Description | 
|---|---|
| void | read(InputStream istream)Read data from an InputStream and initialize fields of a 
  Streamable object. | 
| void | write(OutputStream ostream)Write fields of a Streamable object to an OutputStream | 
void read(InputStream istream) throws IOException
istream - InputStream that represents a resource
                    adapter specific internal representation
                    of fields of a Streamable objectIOException - If an error occursvoid write(OutputStream ostream) throws IOException
ostream - OutputStream that holds value of a
                    Streamable objectIOException - If an error occursCopyright © 2017 JBoss by Red Hat. All rights reserved.