Conforms to TICDSOperationDelegate
Declared in TICDSClassesAndProtocols.h

Overview

The TICDSApplicationRegistrationOperationDelegate protocol defines the methods implemented by delegates of TICDSApplicationRegistrationOperation or one of its subclasses. In the TICoreDataSync framework, these delegate methods are implemented by the application sync manager.

Tasks

Instance Methods

registrationOperationPausedToFindOutWhetherToEnableEncryption:

Informs the delegate that the operation has been paused because the global app directory does not exist. The delegate should query its own delegate to ask whether to enable encryption for this application, and if so find out the password to use.

- (void)registrationOperationPausedToFindOutWhetherToEnableEncryption:(TICDSApplicationRegistrationOperation *)anOperation

Parameters

anOperation

The operation object that sent the message.

Declared In

TICDSClassesAndProtocols.h

registrationOperationPausedToRequestEncryptionPassword:

Informs the delegate that the operation has been paused because this is the first time this client has registered to synchronize with this application, and the existing data is encrypted.

- (void)registrationOperationPausedToRequestEncryptionPassword:(TICDSApplicationRegistrationOperation *)anOperation

Parameters

anOperation

The operation object that sent the message.

Declared In

TICDSClassesAndProtocols.h

registrationOperationResumedFollowingEncryptionInstruction:

Informs the delegate that the operation has resumed after being told whether to use encryption.

- (void)registrationOperationResumedFollowingEncryptionInstruction:(TICDSApplicationRegistrationOperation *)anOperation

Parameters

anOperation

The operation object that sent the message.

Declared In

TICDSClassesAndProtocols.h

registrationOperationResumedFollowingPasswordProvision:

Informs the delegate that the operation has resumed after being given a password.

- (void)registrationOperationResumedFollowingPasswordProvision:(TICDSApplicationRegistrationOperation *)anOperation

Parameters

anOperation

The operation object that sent the message.

Declared In

TICDSClassesAndProtocols.h