BluezQt::ObexObjectPush Class

class BluezQt::ObexObjectPush

OBEX object push. More...

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

Public Functions

ObexObjectPush(const QDBusObjectPath &path, QObject *parent = nullptr)
BluezQt::PendingCall *exchangeBusinessCards(const QString &clientFileName, const QString &targetFileName)
QDBusObjectPath objectPath() const
BluezQt::PendingCall *pullBusinessCard(const QString &targetFileName)
BluezQt::PendingCall *sendFile(const QString &fileName)

Detailed Description

This class represents an OBEX object push interface.

Member Function Documentation

[explicit] ObexObjectPush::ObexObjectPush(const QDBusObjectPath &path, QObject *parent = nullptr)

Creates a new ObexObjectPush object with the given session path as a child of parent.

This class will be typically used with a path from result of ObexManager::createSession().

BluezQt::PendingCall *ObexObjectPush::exchangeBusinessCards(const QString &clientFileName, const QString &targetFileName)

Exchanges the business cards clientFileName and targetFileName on the remote device.

This method pushes the local business card to the remote device and then retrieve the remote business card and store it in a local file.

If an empty targetFileName is given, a name will be automatically calculated for the temporary file.

The returned ObexTransfer can be used to track progress of transfer.

Possible errors:

Returns ObexTransfer * pending call.

QDBusObjectPath ObexObjectPush::objectPath() const

Returns the D-Bus object path of the object push session.

BluezQt::PendingCall *ObexObjectPush::pullBusinessCard(const QString &targetFileName)

Pulls the business card from targetFileName within a remote device.

If an empty targetFileName is given, a name will be automatically calculated for the temporary file.

The returned ObexTransfer can be used to track progress of transfer.

Possible errors:

Returns ObexTransfer * pending call.

BluezQt::PendingCall *ObexObjectPush::sendFile(const QString &fileName)

Sends one local file fileName to the remote device.

The returned ObexTransfer can be used to track progress of transfer.

Possible errors:

Returns ObexTransfer * pending call.