BluezQt::PendingCall Class

class BluezQt::PendingCall

Pending method call. More...

Header: #include <BluezQt/PendingCall>
CMake: find_package(KF6 REQUIRED COMPONENTS BluezQt)
target_link_libraries(mytarget PRIVATE KF6::BluezQt)
Inherits: QObject
Inherited By:

BluezQt::TPendingCall

Public Types

enum Error { NoError, NotReady, Failed, Rejected, Canceled, …, UnknownError }

Properties

Public Functions

int error() const
QString errorText() const
bool isFinished() const
void setUserData(const QVariant &userData)
QVariant userData() const
QVariant value() const
QVariantList values() const
void waitForFinished()

Signals

void finished(BluezQt::PendingCall *call)

Detailed Description

This class represents a pending method call. It is a convenient wrapper around QDBusPendingReply and QDBusPendingCallWatcher.

Member Type Documentation

enum PendingCall::Error

Known error types.

ConstantValueDescription
BluezQt::PendingCall::NoError0Indicates there is no error.
BluezQt::PendingCall::NotReady1Indicates that the device is not ready.
BluezQt::PendingCall::Failed2Indicates that the action have failed.
BluezQt::PendingCall::Rejected3Indicates that the action was rejected.
BluezQt::PendingCall::Canceled4Indicates that the action was canceled.
BluezQt::PendingCall::InvalidArguments5Indicates that invalid arguments were passed.
BluezQt::PendingCall::AlreadyExists6Indicates that an agent or pairing record already exists.
BluezQt::PendingCall::DoesNotExist7Indicates that an agent, service or pairing operation does not exists.
BluezQt::PendingCall::InProgress8Indicates that the action is already in progress.
BluezQt::PendingCall::NotInProgress9Indicates that the action is not in progress.
BluezQt::PendingCall::AlreadyConnected10Indicates that the device is already connected.
BluezQt::PendingCall::ConnectFailed11Indicates that the connection to the device have failed.
BluezQt::PendingCall::NotConnected12Indicates that the device is not connected.
BluezQt::PendingCall::NotSupported13Indicates that the action is not supported.
BluezQt::PendingCall::NotAuthorized14Indicates that the caller is not authorized to do the action.
BluezQt::PendingCall::AuthenticationCanceled15Indicates that the authentication was canceled.
BluezQt::PendingCall::AuthenticationFailed16Indicates that the authentication have failed.
BluezQt::PendingCall::AuthenticationRejected17Indicates that the authentication was rejected.
BluezQt::PendingCall::AuthenticationTimeout18Indicates that the authentication timed out.
BluezQt::PendingCall::ConnectionAttemptFailed19Indicates that the connection attempt have failed.
BluezQt::PendingCall::InvalidLength20Indicates that the data provided generates a data packet which is too long.
BluezQt::PendingCall::NotPermitted21Indicates that the action is not permitted (e.g. maximum reached or socket locked).
BluezQt::PendingCall::DBusError98Indicates an error with D-Bus.
BluezQt::PendingCall::InternalError99Indicates an internal error.
BluezQt::PendingCall::UnknownError100Indicates an unknown error.

Property Documentation

[read-only] error : const int

Access functions:

int error() const

[read-only] errorText : const QString

Access functions:

QString errorText() const

[read-only] isFinished : const bool

Access functions:

bool isFinished() const

userData : QVariant

Access functions:

QVariant userData() const
void setUserData(const QVariant &userData)

[read-only] value : const QVariant

Access functions:

QVariant value() const

[read-only] values : const QVariantList

Access functions:

QVariantList values() const

Member Function Documentation

int PendingCall::error() const

Returns an error code.

Note: Getter function for property error.

See also Error.

QString PendingCall::errorText() const

Returns an error text.

Note: Getter function for property errorText.

[signal] void PendingCall::finished(BluezQt::PendingCall *call)

Indicates that the call has finished.

bool PendingCall::isFinished() const

Returns whether the call is finished.

Note: Getter function for property isFinished.

void PendingCall::setUserData(const QVariant &userData)

Sets the userData of the call.

Note: Setter function for property userData.

See also userData().

QVariant PendingCall::userData() const

Returns the user data of the call.

Note: Getter function for property userData.

See also setUserData().

QVariant PendingCall::value() const

Returns a first return value of the call.

Note: Getter function for property value.

QVariantList PendingCall::values() const

Returns all values of the call.

Note: Getter function for property values.

void PendingCall::waitForFinished()

Waits for the call to finish.

Warning: This method blocks until the call finishes!