- class QSocketNotifier¶
The
QSocketNotifier
class provides support for monitoring activity on a file descriptor. More…Synopsis¶
Methods¶
def
__init__()
def
isEnabled()
def
isValid()
def
setSocket()
def
socket()
def
type()
Slots¶
def
setEnabled()
Signals¶
def
activated()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description¶
The
QSocketNotifier
makes it possible to integrate Qt’s event loop with other event loops based on file descriptors. File descriptor action is detected in Qt’s main event loop (exec()
).Once you have opened a device using a low-level (usually platform-specific) API, you can create a socket notifier to monitor the file descriptor. If the descriptor is passed to the notifier’s constructor, the socket notifier is enabled by default, i.e. it emits the activated() signal whenever a socket event corresponding to its type occurs. Connect the activated() signal to the slot you want to be called when an event corresponding to your socket notifier’s type occurs.
You can create a socket notifier with no descriptor assigned. In this case, you should call the
setSocket()
function after the descriptor has been obtained.There are three types of socket notifiers: read, write, and exception. The type is described by the
Type
enum, and must be specified when constructing the socket notifier. After construction it can be determined using thetype()
function. Note that if you need to monitor both reads and writes for the same file descriptor, you must create two socket notifiers. Note also that it is not possible to install two socket notifiers of the same type (Read
,Write
,Exception
) on the same socket.The
setEnabled()
function allows you to disable as well as enable the socket notifier. It is generally advisable to explicitly enable or disable the socket notifier, especially for write notifiers. A disabled notifier ignores socket events (the same effect as not creating the socket notifier). Use theisEnabled()
function to determine the notifier’s current status.Finally, you can use the
socket()
function to retrieve the socket identifier. Although the class is calledQSocketNotifier
, it is normally used for other types of devices than sockets. QTcpSocket and QUdpSocket provide notification through signals, so there is normally no need to use aQSocketNotifier
on them.- class Type¶
This enum describes the various types of events that a socket notifier can recognize. The type must be specified when constructing the socket notifier.
Note that if you need to monitor both reads and writes for the same file descriptor, you must create two socket notifiers. Note also that it is not possible to install two socket notifiers of the same type (Read, Write, Exception) on the same socket.
Constant
Description
QSocketNotifier.Read
There is data to be read.
QSocketNotifier.Write
Data can be written.
QSocketNotifier.Exception
An exception has occurred. We recommend against using this.
See also
QSocketNotifier()
type()
Constructs a socket notifier with the given
type
that has no descriptor assigned. Theparent
argument is passed toQObject
‘s constructor.Call the
setSocket()
function to set the descriptor for monitoring.See also
Constructs a socket notifier with the given
parent
. It enables thesocket
, and watches for events of the giventype
.It is generally advisable to explicitly enable or disable the socket notifier, especially for write notifiers.
Note for Windows users: The socket passed to
QSocketNotifier
will become non-blocking, even if it was created as a blocking socket.See also
- activated(socket, activationEvent)¶
- Parameters:
socket –
QSocketDescriptor
activationEvent –
Type
This signal is emitted whenever the socket notifier is enabled and a socket event corresponding to its
type
occurs.The socket identifier is passed in the
socket
parameter.- isEnabled()¶
- Return type:
bool
Returns
true
if the notifier is enabled; otherwise returnsfalse
.See also
- isValid()¶
- Return type:
bool
Returns
true
if the notifier is valid (that is, it has a descriptor assigned); otherwise returnsfalse
.See also
- setEnabled(arg__1)¶
- Parameters:
arg__1 – bool
If
enable
is true, the notifier is enabled; otherwise the notifier is disabled.When the notifier is enabled, it emits the activated() signal whenever a socket event corresponding to its
type
occurs. When it is disabled, it ignores socket events (the same effect as not creating the socket notifier).Write notifiers should normally be disabled immediately after the activated() signal has been emitted
See also
- setSocket(socket)¶
- Parameters:
socket –
qintptr
Assigns the
socket
to this notifier.Note
The notifier will be disabled as a side effect and needs to be re-enabled.
See also
- socket()¶
- Return type:
qintptr
Returns the socket identifier assigned to this object.
See also
Returns the socket event type specified to the constructor.
See also