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.GInterface- Structure: - Gio.PollableOutputStreamInterface- Gio.PollableOutputStreamis implemented by- Gio.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: - bool- Checks if self is actually pollable. Some classes may implement - Gio.PollableOutputStreambut have only certain instances of that class be pollable. If this method returns- False, then the behavior of other- Gio.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.Cancellableor- None) – a- Gio.Cancellable, or- None- Returns: - a new - GLib.Source- Return type: - GLib.Source- Creates a - GLib.Sourcethat triggers when self can be written, or cancellable is triggered or an error occurs. The callback on the source is of the- Gio.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 use- Gio.PollableOutputStream.write_nonblocking() rather than- Gio.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 in- Gio.PollableOutputStream.is_writable() returning- True, and the next attempt to write will return the error.- Return type: - bool- Checks 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 returns- Truewould still block. To guarantee non-blocking behavior, you should always use- Gio.PollableOutputStream.write_nonblocking(), which will return a- Gio.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 return- Gio.IOErrorEnum.WOULD_BLOCK, and you can use- Gio.PollableOutputStream.create_source() to create a- GLib.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), or- Gio.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 use- Gio.PollableOutputStream.create_source() to create a- GLib.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: - bool- Checks if stream is actually pollable. Some classes may implement - Gio.PollableOutputStreambut have only certain instances of that class be pollable. If this method returns- False, then the behavior of other- Gio.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.Cancellableor- None) – a- Gio.Cancellable, or- None- Returns: - a new - GLib.Source- Return type: - GLib.Source- Creates a - GLib.Sourcethat triggers when stream can be written, or cancellable is triggered or an error occurs. The callback on the source is of the- Gio.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 use- Gio.PollableOutputStream.write_nonblocking() rather than- Gio.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 in- Gio.PollableOutputStream.is_writable() returning- True, and the next attempt to write will return the error.- Return type: - bool- Checks 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 returns- Truewould still block. To guarantee non-blocking behavior, you should always use- Gio.PollableOutputStream.write_nonblocking(), which will return a- Gio.IOErrorEnum.WOULD_BLOCKerror rather than blocking.- New in version 2.28. 
 - 
do_write_nonblocking(buffer) virtual¶
- Parameters: - buffer ( - bytesor- None) – a buffer to write data from- Returns: - the number of bytes written, or -1 on error (including - Gio.IOErrorEnum.WOULD_BLOCK).- Return type: - int- Attempts to write up to count bytes from buffer to stream, as with - Gio.OutputStream.write(). If stream is not currently writable, this will immediately return- Gio.IOErrorEnum.WOULD_BLOCK, and you can use- Gio.PollableOutputStream.create_source() to create a- GLib.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 the- Gio.OutputVectorsto write.- Returns: - %:obj:Gio.PollableReturn.OK on success, - Gio.PollableReturn.WOULD_BLOCKif the stream is not currently writable (and error is *not* set), or- Gio.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 use- Gio.PollableOutputStream.create_source() to create a- GLib.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. 
 
-