QDBusConnectionInterface Class Reference |
Constant | Value | Description |
---|---|---|
QDBusConnectionInterface::ServiceNotRegistered | 0 | The call failed and the service name was not registered. |
QDBusConnectionInterface::ServiceRegistered | 1 | The caller is now the owner of the service name. |
QDBusConnectionInterface::ServiceQueued | 2 | The caller specified the QueueService flag and the service was already registered, so we are in queue. |
The serviceRegistered() signal will be emitted when the service is acquired by this application.
Flags for determining how a service registration should behave, in case the service name is already registered.
Constant | Value | Description |
---|---|---|
QDBusConnectionInterface::DontQueueService | 0 | If an application requests a name that is already owned, no queueing will be performed. The registeredService() call will simply fail. This is the default. |
QDBusConnectionInterface::QueueService | 1 | Attempts to register the requested service, but do not try to replace it if another application already has it registered. Instead, simply put this application in queue, until it is given up. The serviceRegistered() signal will be emitted when that happens. |
QDBusConnectionInterface::ReplaceExistingService | 2 | If another application already has the service name registered, attempt to replace it. |
See also ServiceReplacementOptions.
Flags for determining if the D-BUS server should allow another application to replace a name that this application has registered with the ReplaceExistingService option.
The possible values are:
Constant | Value | Description |
---|---|---|
QDBusConnectionInterface::DontAllowReplacement | 0 | Do not allow another application to replace us. The service must be explicitly unregistered with unregisterService() for another application to acquire it. This is the default. |
QDBusConnectionInterface::AllowReplacement | 1 | Allow other applications to replace us with the ReplaceExistingService option to registerService() without intervention. If that happens, the serviceUnregistered() signal will be emitted. |
See also ServiceQueueOptions.
This property holds holds the registered service names.
Lists all names currently registered on the bus.
Access functions:
This signal is emitted when there is an error during a QDBusConnection::callWithCallback(). error specifies the error. call is the message that couldn't be delivered.
See also QDBusConnection::callWithCallback().
Returns true if the service name serviceName has is currently registered.
Requests to register the service name serviceName on the bus. The qoption flag specifies how the D-BUS server should behave if serviceName is already registered. The roption flag specifies if the server should allow another application to replace our registered name.
If the service registration succeeds, the serviceRegistered() signal will be emitted. If we are placed in queue, the signal will be emitted when we obtain the name. If roption is AllowReplacement, the serviceUnregistered() signal will be emitted if another application replaces this one.
See also unregisterService().
Returns the unique connection name of the primary owner of the name name. If the requested name doesn't have an owner, returns a org.freedesktop.DBus.Error.NameHasNoOwner error.
This signal is emitted by the D-BUS server whenever a service ownership change happens in the bus, including apparition and disparition of names.
This signal means the application oldOwner lost ownership of bus name name to application newOwner. If oldOwner is an empty string, it means the name name has just been created; if newOwner is empty, the name name has no current owner and is no longer available.
Returns the Unix Process ID (PID) for the process currently holding the bus service serviceName.
This signal is emitted by the D-BUS server when the bus service name (unique connection name or well-known service name) given by serviceName is acquired by this application.
Acquisition happens after the application requested a name using registerService().
Returns the Unix User ID (UID) for the process currently holding the bus service serviceName.
This signal is emitted by the D-BUS server when the application loses ownership of the bus service name given by serviceName.
Requests that the bus start the service given by the name name.
Releases the claim on the bus service name serviceName, that had been previously registered with registerService(). If this application had ownership of the name, it will be released for other applications to claim. If it only had the name queued, it gives up its position in the queue.
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 4.3 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com