Method
JsonParserload_from_stream_async
Declaration [src]
void
json_parser_load_from_stream_async (
JsonParser* parser,
GInputStream* stream,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer user_data
)
Description [src]
Asynchronously reads the contents of a stream.
For more details, see json_parser_load_from_stream(), which is the synchronous version of this call.
When the operation is finished, callback
will be called. You should
then call json_parser_load_from_stream_finish() to get the result
of the operation.
Available since: | 0.12 |
Parameters
stream |
GInputStream* |
The input stream with the JSON data. |
|
The data is owned by the caller of the function. | |
cancellable |
GCancellable* |
A |
|
The argument can be NULL . | |
The data is owned by the caller of the function. | |
callback |
GAsyncReadyCallback |
The function to call when the request is satisfied. |
|
user_data |
gpointer |
The data to pass to |