InputStream.readBytes
glib.bytes.Bytes readBytes(size_t count, gio.cancellable.Cancellable cancellable = null)Like [gio.input_stream.InputStream.read], this tries to read count bytes from the stream in a blocking fashion. However, rather than reading into a user-supplied buffer, this will create a new #GBytes containing the data that was read. This may be easier to use from language bindings.
If count is zero, returns a zero-length #GBytes and does nothing. A value of count larger than G_MAXSSIZE will cause a [gio.types.IOErrorEnum.InvalidArgument] error.
On success, a new #GBytes is returned. It is not an error if the size of this object is not the same as the requested size, as it can happen e.g. near the end of a file. A zero-length #GBytes is returned on end of file (or if count is zero), but never otherwise.
If cancellable is not null, then the operation can be cancelled by triggering the cancellable object from another thread. If the operation was cancelled, the error [gio.types.IOErrorEnum.Cancelled] will be returned. If an operation was partially finished when the operation was cancelled the partial result will be returned, without an error.
On error null is returned and error is set accordingly.
Parameters
count | maximum number of bytes that will be read from the stream. Common values include 4096 and 8192. |
cancellable | optional #GCancellable object, null to ignore. |