Synchronizer¶
-
class
connector.unit.synchronizer.Deleter(connector_env)[source]¶ Bases:
connector.unit.synchronizer.SynchronizerSynchronizer for deleting a record on the backend
-
class
connector.unit.synchronizer.Exporter(connector_env)[source]¶ Bases:
connector.unit.synchronizer.SynchronizerSynchronizer for exporting data from OpenERP to a backend
-
class
connector.unit.synchronizer.Importer(connector_env)[source]¶ Bases:
connector.unit.synchronizer.SynchronizerSynchronizer for importing data from a backend to OpenERP
-
class
connector.unit.synchronizer.Synchronizer(connector_env)[source]¶ Bases:
connector.connector.ConnectorUnitBase class for synchronizers
-
backend_adapter¶ Return an instance of
BackendAdapterfor the synchronization.The instanciation is delayed because some synchronisations do not need such an unit and the unit may not exist.
Return type: connector.unit.backend_adapter.BackendAdapter
-
binder¶ Return an instance of
Binderfor the synchronization.The instanciation is delayed because some synchronisations do not need such an unit and the unit may not exist.
Return type: connector.unit.binder.Binder
-
mapper¶ Return an instance of
Mapperfor the synchronization.The instanciation is delayed because some synchronisations do not need such an unit and the unit may not exist.
Return type: connector.unit.mapper.Mapper
-