-
public interface Streamable
Streamable interface enables a resource adapter to extract data from an input Record or set data into an output Record as a stream of bytes.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.
- Since:
- 0.8
- Author:
- Rahul Sharma
- See Also:
Record
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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
-
-
-
Method Detail
-
read
void read(InputStream istream) throws IOException
Read data from an InputStream and initialize fields of a Streamable object.- Parameters:
istream
- InputStream that represents a resource adapter specific internal representation of fields of a Streamable object- Throws:
IOException
-
write
void write(OutputStream ostream) throws IOException
Write fields of a Streamable object to an OutputStream- Parameters:
ostream
- OutputStream that holds value of a Streamable object- Throws:
IOException
-
-
Document created the 11/06/2005, last modified the 18/08/2025
Source of the printed document:https://www.gaudry.be/en/java-api-javaee-rf-javax/resource/cci/streamable.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author of this site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.