Interface for receiving fingerprint reader events.
Objects which implement this protocol may receive callbacks when these events occur, via delegation from a GrabbaFingerprintListener object.
Note that this protocol need not be directly implemented; it may be simpler to subclass GrabbaFingerprintListener and thereby receive the events directly.
Thread safety: This interface is intended to be thread-safe; any classes deriving from it should ensure that the relevant methods are callable from any thread.
Instance Methods | |
(void) | - completionEvent |
Callback which is invoked when an asynchronous fingerprint operation completes successfully. More... | |
(void) | - errorEvent: |
Callback which is invoked when an asynchronous fingerprint operation fails to complete. More... | |
(void) | - imageEvent: |
Callback which is invoked when fingerprint image data is returned. More... | |
(void) | - templateEvent: |
Callback which is invoked when fingerprint template data is returned from the reader. More... | |
(void) | - userMessageEvent: |
Callback which is invoked when there is a user message to display. More... | |
- (void) completionEvent |
Callback which is invoked when an asynchronous fingerprint operation completes successfully.
Each asynchronous operation will trigger either this or errorEvent (but not both) immediately prior to termination.
- (void) errorEvent: | (GrabbaErrorCode *_Nonnull) | error |
Callback which is invoked when an asynchronous fingerprint operation fails to complete.
Each asynchronous operation will trigger either this or completionEvent (but not both) immediately prior to termination.
error | Details of the error which was detected |
- (void) imageEvent: | (GrabbaFingerprintImage *_Nonnull) | image |
Callback which is invoked when fingerprint image data is returned.
image | Captured fingerprint image data, plus associated metadata |
- (void) templateEvent: | (GrabbaFingerprintTemplate *_Nonnull) | templ |
Callback which is invoked when fingerprint template data is returned from the reader.
templ | Captured fingerprint template data, plus associated metadata |
- (void) userMessageEvent: | (GrabbaFingerprintUserMessage *_Nonnull) | message |
Callback which is invoked when there is a user message to display.
message | Message which needs to be displayed |