DataInputStream.readUntilAsync

The asynchronous version of g_data_input_stream_read_until(). It is an error to have two outstanding calls to this function. Note that, in contrast to g_data_input_stream_read_until(), this function does not consume the stop character that it finds. You must read it for yourself. When the operation is finished, callback will be called. You can then call g_data_input_stream_read_until_finish() to get the result of the operation. Don't use this function in new code. Its functionality is inconsistent with g_data_input_stream_read_until(). Both functions will be marked as deprecated in a future release. Use g_data_input_stream_read_upto_async() instead. Since 2.20

class DataInputStream
void
readUntilAsync

Parameters

stopChars string

characters to terminate the read.

ioPriority int

the I/O priority of the request.

cancellable Cancellable

optional GCancellable object, NULL to ignore. [allow-none]

callback GAsyncReadyCallback

callback to call when the request is satisfied. [scope async]

userData void*

the data to pass to callback function. closure

Meta