SyncSpaceDelegate
public protocol SyncSpaceDelegate
Delegate protocol for receiving updates performed during synchronization
-
This is called whenever a new Asset was created or an existing one was updated.
Declaration
Swift
func create(asset: Asset)Parameters
assetThe created/updated Asset
-
This is called whenever an Asset was deleted.
Declaration
Swift
func delete(assetWithId: String)Parameters
assetIdIdentifier of the Asset that was deleted.
-
This is called whenever a new Entry was created or an existing one was updated.
Declaration
Swift
func create(entry: Entry)Parameters
entryThe created/updated Entry
-
This is called whenever an Entry was deleted.
Declaration
Swift
func delete(entryWithId: String)Parameters
entryIdIdentifier of the Entry that was deleted.
View on GitHub
SyncSpaceDelegate Protocol Reference