Stream (Java™)
Represents a stream of binary or character data.
Note: This class is new with Release 6.
Syntax
public class Stream extends Base
throws NotesException
Containment
Contained by: Session
Properties
Bytes through getBytes
Charset through getCharset
IsEOS through isEOS
IsReadOnly through isReadOnly
Position through getPosition and setPosition
Methods
recycle
Creation and access
To create a Stream object, use the createStream method in Session.
When a stream is created, property values are:
- Bytes is 0.
- Charset is Unicode.
- IsEOS is true.
- IsReadOnly is false.
- Position is 0.
Usage
Use of a Stream object is limited to the thread in which is created.