Encapsulation of fingerprint reader user message data.
Thread safety:
Instance Methods | |
(instancetype _Nullable) | - init |
Initialise an empty (null) user message. More... | |
(instancetype _Nullable) | - initWithID:count:total:userRecord: |
Initialise with given message ID and parameters. More... | |
Class Methods | |
(NSString *_Nonnull) | + messageForID: |
Obtain the user message associated with a given ID. More... | |
(instancetype _Nullable) | + userMessage |
Allocate and initialise an empty (null) user message. More... | |
(instancetype _Nullable) | + userMessageWithID:count:total:userRecord: |
Allocate and initialise with given message ID and parameters. More... | |
Properties | |
uint8_t | count |
Scan count for enrolment/verification, code quality for images, or progress percentage for image transfer. More... | |
GrabbaFingerprintUserMessageTypeID | ID |
ID of this message; maps to an associated message string. More... | |
NSString *_Nonnull | message |
User message associated with the current ID. More... | |
uint8_t | total |
Total number of scans which will occur for enrolment/verification. More... | |
GrabbaFingerprintUserRecord *_Nonnull | user |
User record which was matched by a successful identify operation. More... | |
- (instancetype _Nullable) init |
Initialise an empty (null) user message.
nil
if it failed - (instancetype _Nullable) initWithID: | (GrabbaFingerprintUserMessageTypeID) | ID | |
count: | (uint8_t) | count | |
total: | (uint8_t) | total | |
userRecord: | (GrabbaFingerprintUserRecord *_Nonnull) | userRecord | |
Initialise with given message ID and parameters.
ID | Initial value of the message ID field |
count | Initial value of the count field; default is 0 |
total | Initial value of the total field; default is 0 |
userRecord | Initial value of the userRecord field; default is an empty user record |
nil
if it failed + (NSString* _Nonnull) messageForID: | (GrabbaFingerprintUserMessageTypeID) | ID |
Obtain the user message associated with a given ID.
ID | The type of message which is being queried |
+ (instancetype _Nullable) userMessage |
Allocate and initialise an empty (null) user message.
nil
if it failed + (instancetype _Nullable) userMessageWithID: | (GrabbaFingerprintUserMessageTypeID) | ID | |
count: | (uint8_t) | count | |
total: | (uint8_t) | total | |
userRecord: | (GrabbaFingerprintUserRecord *_Nonnull) | userRecord | |
Allocate and initialise with given message ID and parameters.
ID | Initial value of the message ID field |
count | Initial value of the count field; default is 0 |
total | Initial value of the total field; default is 0 |
userRecord | Initial value of the userRecord field; default is an empty user record |
nil
if it failed
|
readwritenonatomicassign |
Scan count for enrolment/verification, code quality for images, or progress percentage for image transfer.
Only applicable to the following message types: ImageCodeQuality, ImageProgress, PlaceFingerForAcquisition, PlaceFirstFingerForAcquisition, PlaceSecondFingerForAcquisition.
For all other message types it is set to zero.
|
readwritenonatomicassign |
ID of this message; maps to an associated message string.
|
readnonatomiccopy |
User message associated with the current ID.
This value is not directly writeable; updates should use ID instead
|
readwritenonatomicassign |
Total number of scans which will occur for enrolment/verification.
Only applicable to the following message types: PlaceFingerForAcquisition, PlaceFirstFingerForAcquisition, PlaceSecondFingerForAcquisition.
For all other message types it is set to zero.
|
readwritenonatomicassign |
User record which was matched by a successful identify operation.
Only applicable to the MatchSuccessful message type, and only for identify operations.