Skip to main content

AUTELObject

class AUTELObject

@interface AUTELObject : NSObject

describe:This class defines the SDK general object class

typedef⁡ block AUTELExecuteResultBlock

typedef void (^_Nullable AUTELExecuteResultBlock)(AUTELError *_Nullable error);

describe: execute result callback。Result of the async operation after completion. User should always check the error's code to see whether the operation is execut succeed. if error.errorCode not equal to ERR_Succeeded then chekc the error description to see the reason why the operation failed.

input parameter:

error:indicates error message. Error retuns nil if this function applies successfully


typedef⁡ block AUTELCompletionBlock

typedef void (^_Nullable AUTELCompletionBlock)(NSError *_Nullable error)

describe:completion block

input parameter:

error:indicates error message. Error retuns nil if this function applies successfully


typedef⁡ block AUTELProgressHandler

typedef void (^_Nullable AUTELProgressHandler)(float progress);

describe:block Returns the progress status from 0.0 to 100.0

input parameter:

progress:progress. float value in range:[0.0-100]