class ItemCopyJob


Module akonadi
Namespace Akonadi
Class ItemCopyJob
Inherits Akonadi::Job
Job that copies a set of items to a target collection in the Akonadi storage.

The job can be used to copy one or several Item objects to another collection.

Example:

Akonadi.Item.List items = ... Akonadi.Collection collection = ...

Akonadi.ItemCopyJob *job = new Akonadi.ItemCopyJob( items, collection );

if ( job->exec() ) qDebug() << "Items copied successfully"; else qDebug() << "Error occurred";

Author Volker Krause



methods