istream_is_completed()#
istream_is_completed() checks if the input stream has completed reading the expected data.
Prototype
PUBLIC BOOL istream_is_completed(
istream_h istream
);
Parameters
Key |
Type |
Description |
|---|---|---|
|
|
Handle to the input stream. |
Return Value
Returns TRUE if the input stream has completed reading the expected data, otherwise returns FALSE.
Notes
[‘If istream is NULL, an error is logged and FALSE is returned.’]
Prototype
// Not applicable in JS
Prototype
# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples