Gio.PollableOutputStream¶
| Implementations: | |
|---|---|
Gio.ConverterOutputStream, Gio.MemoryOutputStream, Gio.UnixOutputStream |
|
Methods¶
can_poll () |
|
create_source (cancellable) |
|
is_writable () |
|
write_nonblocking (buffer, cancellable) |
|
writev_nonblocking (vectors, cancellable) |
Virtual Methods¶
do_can_poll () |
|
do_create_source (cancellable) |
|
do_is_writable () |
|
do_write_nonblocking (buffer) |
|
do_writev_nonblocking (vectors) |
Properties¶
None
Signals¶
None
Fields¶
None
Class Details¶
-
class
Gio.PollableOutputStream¶ Bases: GObject.GInterfaceStructure: Gio.PollableOutputStreamInterfaceGio.PollableOutputStreamis implemented byGio.OutputStreamsthat can be polled for readiness to write. This can be used when interfacing with a non-GIO API that expects UNIX-file-descriptor-style asynchronous I/O rather than GIO-style.New in version 2.28.
-
can_poll()[source]¶ Returns: Trueif self is pollable,Falseif not.Return type: boolChecks if self is actually pollable. Some classes may implement
Gio.PollableOutputStreambut have only certain instances of that class be pollable. If this method returnsFalse, then the behavior of otherGio.PollableOutputStreammethods is undefined.For any given stream, the value returned by this method is constant; a stream cannot switch from pollable to non-pollable or vice versa.
New in version 2.28.
-
create_source(cancellable)[source]¶ Parameters: cancellable ( Gio.CancellableorNone) – aGio.Cancellable, orNoneReturns: a new GLib.SourceReturn type: GLib.SourceCreates a
GLib.Sourcethat triggers when self can be written, or cancellable is triggered or an error occurs. The callback on the source is of theGio.PollableSourceFunctype.As with
Gio.PollableOutputStream.is_writable(), it is possible that the stream may not actually be writable even after the source triggers, so you should useGio.PollableOutputStream.write_nonblocking() rather thanGio.OutputStream.write() from the callback.New in version 2.28.
-
is_writable()[source]¶ Returns: Trueif self is writable,Falseif not. If an error has occurred on self, this will result inGio.PollableOutputStream.is_writable() returningTrue, and the next attempt to write will return the error.Return type: boolChecks if self can be written.
Note that some stream types may not be able to implement this 100% reliably, and it is possible that a call to
Gio.OutputStream.write() after this returnsTruewould still block. To guarantee non-blocking behavior, you should always useGio.PollableOutputStream.write_nonblocking(), which will return aGio.IOErrorEnum.WOULD_BLOCKerror rather than blocking.New in version 2.28.
-
write_nonblocking(buffer, cancellable)[source]¶ Parameters: - buffer (
bytes) – a buffer to write data from - cancellable (
Gio.CancellableorNone) – aGio.Cancellable, orNone
Raises: Returns: the number of bytes written, or -1 on error (including
Gio.IOErrorEnum.WOULD_BLOCK).Return type: Attempts to write up to count bytes from buffer to self, as with
Gio.OutputStream.write(). If self is not currently writable, this will immediately returnGio.IOErrorEnum.WOULD_BLOCK, and you can useGio.PollableOutputStream.create_source() to create aGLib.Sourcethat will be triggered when self is writable.Note that since this method never blocks, you cannot actually use cancellable to cancel it. However, it will return an error if cancellable has already been cancelled when you call, which may happen if you call this method after a source triggers due to having been cancelled.
Also note that if
Gio.IOErrorEnum.WOULD_BLOCKis returned some underlying transports like D/TLS require that you re-send the same buffer and count in the next write call.- buffer (
-
writev_nonblocking(vectors, cancellable)[source]¶ Parameters: - vectors ([
Gio.OutputVector]) – the buffer containing theGio.OutputVectorsto write. - cancellable (
Gio.CancellableorNone) – aGio.Cancellable, orNone
Raises: Returns: %:obj:Gio.PollableReturn.OK on success,
Gio.PollableReturn.WOULD_BLOCKif the stream is not currently writable (and error is *not* set), orGio.PollableReturn.FAILEDif there was an error in which case error will be set.bytes_written: location to store the number of bytes that were written to the stream Return type: (
Gio.PollableReturn, bytes_written:int)Attempts to write the bytes contained in the n_vectors vectors to self, as with
Gio.OutputStream.writev(). If self is not currently writable, this will immediately return %:obj:Gio.PollableReturn.WOULD_BLOCK, and you can useGio.PollableOutputStream.create_source() to create aGLib.Sourcethat will be triggered when self is writable. error will *not* be set in that case.Note that since this method never blocks, you cannot actually use cancellable to cancel it. However, it will return an error if cancellable has already been cancelled when you call, which may happen if you call this method after a source triggers due to having been cancelled.
Also note that if
Gio.PollableReturn.WOULD_BLOCKis returned some underlying transports like D/TLS require that you re-send the same vectors and n_vectors in the next write call.New in version 2.60.
- vectors ([
-
do_can_poll() virtual¶ Returns: Trueif stream is pollable,Falseif not.Return type: boolChecks if stream is actually pollable. Some classes may implement
Gio.PollableOutputStreambut have only certain instances of that class be pollable. If this method returnsFalse, then the behavior of otherGio.PollableOutputStreammethods is undefined.For any given stream, the value returned by this method is constant; a stream cannot switch from pollable to non-pollable or vice versa.
New in version 2.28.
-
do_create_source(cancellable) virtual¶ Parameters: cancellable ( Gio.CancellableorNone) – aGio.Cancellable, orNoneReturns: a new GLib.SourceReturn type: GLib.SourceCreates a
GLib.Sourcethat triggers when stream can be written, or cancellable is triggered or an error occurs. The callback on the source is of theGio.PollableSourceFunctype.As with
Gio.PollableOutputStream.is_writable(), it is possible that the stream may not actually be writable even after the source triggers, so you should useGio.PollableOutputStream.write_nonblocking() rather thanGio.OutputStream.write() from the callback.New in version 2.28.
-
do_is_writable() virtual¶ Returns: Trueif stream is writable,Falseif not. If an error has occurred on stream, this will result inGio.PollableOutputStream.is_writable() returningTrue, and the next attempt to write will return the error.Return type: boolChecks if stream can be written.
Note that some stream types may not be able to implement this 100% reliably, and it is possible that a call to
Gio.OutputStream.write() after this returnsTruewould still block. To guarantee non-blocking behavior, you should always useGio.PollableOutputStream.write_nonblocking(), which will return aGio.IOErrorEnum.WOULD_BLOCKerror rather than blocking.New in version 2.28.
-
do_write_nonblocking(buffer) virtual¶ Parameters: buffer ( bytesorNone) – a buffer to write data fromReturns: the number of bytes written, or -1 on error (including Gio.IOErrorEnum.WOULD_BLOCK).Return type: intAttempts to write up to count bytes from buffer to stream, as with
Gio.OutputStream.write(). If stream is not currently writable, this will immediately returnGio.IOErrorEnum.WOULD_BLOCK, and you can useGio.PollableOutputStream.create_source() to create aGLib.Sourcethat will be triggered when stream is writable.Note that since this method never blocks, you cannot actually use cancellable to cancel it. However, it will return an error if cancellable has already been cancelled when you call, which may happen if you call this method after a source triggers due to having been cancelled.
Also note that if
Gio.IOErrorEnum.WOULD_BLOCKis returned some underlying transports like D/TLS require that you re-send the same buffer and count in the next write call.
-
do_writev_nonblocking(vectors) virtual¶ Parameters: vectors ([ Gio.OutputVector]) – the buffer containing theGio.OutputVectorsto write.Returns: %:obj:Gio.PollableReturn.OK on success, Gio.PollableReturn.WOULD_BLOCKif the stream is not currently writable (and error is *not* set), orGio.PollableReturn.FAILEDif there was an error in which case error will be set.bytes_written: location to store the number of bytes that were written to the stream Return type: ( Gio.PollableReturn, bytes_written:int)Attempts to write the bytes contained in the n_vectors vectors to stream, as with
Gio.OutputStream.writev(). If stream is not currently writable, this will immediately return %:obj:Gio.PollableReturn.WOULD_BLOCK, and you can useGio.PollableOutputStream.create_source() to create aGLib.Sourcethat will be triggered when stream is writable. error will *not* be set in that case.Note that since this method never blocks, you cannot actually use cancellable to cancel it. However, it will return an error if cancellable has already been cancelled when you call, which may happen if you call this method after a source triggers due to having been cancelled.
Also note that if
Gio.PollableReturn.WOULD_BLOCKis returned some underlying transports like D/TLS require that you re-send the same vectors and n_vectors in the next write call.New in version 2.60.
-