Trees | Indices | Help |
|
---|
|
pisiinterfaces.AbstractSynchronizationModule --+ | AbstractContactSynchronizationModule
Super class for all synchronization modules, which aim to synchronize contacts information.
Each Synchronization class implementing contact synchronization should inherit from this class.
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from |
|
|||
_allContacts Dictionary to hold all contact instance for the implementation. |
|||
_history Keeps track of all changes applied to the container for this data source (for later write through) |
|||
Inherited from |
|
Constructor Instance variables are initialized. |
Saves a contact for later writing One entry is added to the history list (_history) with action id for 'add' and the new instance is stored in the contacts dictionary (_allContacts). |
Getter.
|
Remove all entries in repository An entry in the history list (_history) is appended for each entry in the contact list with action id for 'delete'. Afterwards, the dictionary for all contacts (_allContacts) is flushed. |
GETTER
|
Removes a contact entry One entry is added to the history list (_history) with action id for 'delete' and the instance is as well removed from the contacts dictionary (_allContacts). |
Replaces an existing contact entry with a new one. One entry is added to the history list (_history) with action id for 'replace' and the old instance is replaced by the new one in the contacts dictionary (_allContacts). |
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri Apr 2 09:04:23 2010 | http://epydoc.sourceforge.net |