![]() |
Home · All Classes · All Functions · | ![]() |
The QContactFetchHint class provides hints to the manager about which contact information needs to be retrieved in an asynchronous fetch request or a synchronous function call. More...
#include <QContactFetchHint>
enum | OptimizationHint { AllRequired, NoRelationships, NoBinaryBlobs } |
flags | OptimizationHints |
QContactFetchHint () | |
QContactFetchHint ( const QContactFetchHint & other ) | |
~QContactFetchHint () | |
QStringList | detailDefinitionsHint () const |
OptimizationHints | optimizationHints () const |
QStringList | relationshipTypesHint () const |
void | setDetailDefinitionsHint ( const QStringList & definitionNames ) |
void | setOptimizationHints ( OptimizationHints hints ) |
void | setRelationshipTypesHint ( const QStringList & relationshipTypes ) |
QContactFetchHint & | operator= ( const QContactFetchHint & other ) |
The QContactFetchHint class provides hints to the manager about which contact information needs to be retrieved in an asynchronous fetch request or a synchronous function call.
All of the hints may be ignored at the discretion of the manager, however if a manager is able to optimize retrieval of contacts due to hints, it may do so. If a manager ignores a hint, it must retrieve the full set of data that the hint refers to.
The fetch hint contains:
Important note: a client should not make changes to a contact which has been retrieved using a fetch hint other than the default fetch hint. Doing so will result in information loss when saving the contact back to the manager (as the "new" restricted contact will replace the previously saved contact in the backend).
This enum defines flags which may be set to inform the backend that the client does not require certain information. The backend may safely ignore the hint, but then must return the full set of information relating to the optimization hint.
Constant | Value | Description |
---|---|---|
QContactFetchHint::AllRequired | 0x0 | Tells the backend that all information is required |
QContactFetchHint::NoRelationships | 0x1 | Tells the backend that the client does not require retrieved contacts to include a cache of relationships Tells the backend that the client does not require retrieved contacts to include a cache of action preferences |
QContactFetchHint::NoBinaryBlobs | 0x4 | Tells the backend that the client does not require retrieved contacts to include binary blobs such as thumbnail images |
The OptimizationHints type is a typedef for QFlags<OptimizationHint>. It stores an OR combination of OptimizationHint values.
Constructs a new contact fetch hint which requests that the backend fetch all information
Constructs a new contact fetch hint as a copy of other
Frees any memory in use by the fetch hint
Returns the list of definition names that identify detail definitions of which details the manager should (at a minimum) retrieve when fetching contacts. This hint may be ignored by the backend, in which case it will return the full set of details for each contact retrieved.
See also setDetailDefinitionsHint().
Returns the optimization hint flags specified by the client. These hints may be ignored by the backend, in which case it will return the full set of information accessible in a contact, including relationships and binary blobs.
See also setOptimizationHints().
Returns the list of relationship types that the manager should (at a minimum) retrieve when fetching contacts. This hint may be ignored by the backend, in which case it will return the full set of relationships for each contact retrieved.
See also setRelationshipTypesHint() and QContact::relationships().
Sets the list of definition names that identify detail definitions of which details the manager should (at a minimum) retrieve when fetching contacts to definitionNames. This hint may be ignored by the backend, in which case it will return the full set of details for each contact retrieved.
See also detailDefinitionsHint().
Sets the optimization hint flags specified by the client to hints. These hints may be ignored by the backend, in which case it will return the full set of information accessible in a contact, including relationships and binary blobs.
See also optimizationHints().
Sets the list of relationship types that the manager should (at a minimum) retrieve when fetching contacts to relationshipTypes. This hint may be ignored by the backend, in which case it will return the full set of relationships for each contact retrieved.
See also relationshipTypesHint() and QContact::relationships().
Assigns this fetch hint to be equal to the other fetch hint
Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies) | Trademarks | Qt Mobility Project 1.0.2 |