Gio.DataInputStream.prototype.read_until_finish
function read_until_finish(result: Gio.AsyncResult): [return_value: String, length: Number(gsize)] {
// Gjs wrapper for g_data_input_stream_read_until_finish()
}
Finish an asynchronous call started by Gio.DataInputStream.prototype.read_until_async.
Since 2.20
- result
the Gio.AsyncResult that was provided to the callback.
- return_value
a string with the data that was read before encountering any of the stop characters. Set length to a #gsize to get the length of the string. This function will return null on an error.
- length
a #gsize to get the length of the data read in.