MVPbkContactStoreList Class Reference

class MVPbkContactStoreList

An interface for a list of contact stores.

The interface provides an access to multiple stores. It's possible to open and close all stores in single call using this interface. When client calls OpenAllL it must also calls CloseAll after usage.

CVPbkContactManager::ContactStoresL

Constructor & Destructor Documentation

~MVPbkContactStoreList()

~MVPbkContactStoreList()[inline, virtual]

Member Functions Documentation

At(TInt)

MVPbkContactStore &At(TIntaIndex)const [pure virtual]

Returns the store in given index in the list.

Parameters

TInt aIndexthe index of the store in the list aIndex >= 0 && aIndex < Count() VPbkError::Panic(VPbkError::EInvalidStoreIndex) is raised if the precondition does not hold.

CloseAll(MVPbkContactStoreListObserver &)

voidCloseAll(MVPbkContactStoreListObserver &aObserver)[pure virtual]

Closes all stores in the list.

This is safe to call in all circumstances. Implementations can not trust that OpenAllL has been called before.

Parameters

MVPbkContactStoreListObserver & aObserverAn observer for the close process.

ContactStoreListExtension(TUid)

TAny *ContactStoreListExtension(TUid)[inline, virtual]

Returns an extension point for this interface or NULL.

Parameters

TUid

Count()

TInt Count()const [pure virtual]

Returns the number of stores in the list.

Find(const TVPbkContactStoreUriPtr &)

MVPbkContactStore *Find(const TVPbkContactStoreUriPtr &aUri)const [pure virtual]

Finds the contact store corresponding to the aUri.

Parameters

const TVPbkContactStoreUriPtr & aUrithe store URI to search for.

OpenAllL(MVPbkContactStoreListObserver &)

voidOpenAllL(MVPbkContactStoreListObserver &aObserver)[pure virtual]

Opens all stores in the list asynchronously.

A client can not use stores before it has successfully opened them. CloseAll must be always called by the same observer that has opened stores.

NOTE: There can be only one observer for one store list at a time.

Exceptions
KErrInUse

If one observer is currently opening this list.

Parameters

MVPbkContactStoreListObserver & aObserverAn observer for the stores.