init(for:)
Creates an identifier for the specified entity.
Declaration
init<Entity>(for entity: Entity) where Entity : AppEntityParameters
- entity:
The entity for which to create an identifier
Discussion
For entities adopting _SyncableEntity, this initializer extracts the stable ID:
Passthrough case: If the entity’s ID is already stable (like
UUID), it’s used as both local and stable IDMapped case: If the entity’s ID uses
_SyncableEntityIdentifier, the stable ID is extracted from the wrapperCustom identifier case: If the entity’s ID conforms to
_SyncableEntityIdentifierProviding, the stable ID is extracted viastableIdentifierString
The stable ID is used for cross-device entity resolution via Campo session syncing.