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 there is an error reading from the streamvoid write(OutputStream ostream) throws IOException
ostream - OutputStream that holds value of a
                    Streamable objectIOException - if there is an error writing to the streamCopyright © 2018,2020 Eclipse Foundation.
Use is subject to license terms.