Base proxcard-event listener class, for receiving events from the Grabba device's proxcard/RFID reader.
The following events are supported by this class:
Each event may invoke callbacks in two ways:
By default, each listener object will register itself for callbacks upon construction, and deregister itself at destruction; the enable and disable methods may be used if an object requires manual control over when its callbacks are triggered.
The default behaviour for each event, if not overridden, on an enabled listener object is as follows:
Overrides need not call the superclass' equivalent method unless it is necessary to preserve the delegation (i.e. to support both subclassing and delegation from a single object).
Thread safety: This interface is intended to be thread-safe; any classes deriving or delegating from it should ensure that the relevant methods are callable from any thread.
Instance Methods | |
(void) | - dataEvent: |
Callback which is invoked when an RFID tag or proxcard is successfully scanned. More... | |
(void) | - disable |
Disable listening for events from this object, if not already disabled. More... | |
(void) | - enable |
Enable listening for events from this object, if not already enabled. More... | |
(void) | - errorEvent: |
Callback which is invoked when an RFID/proxcard scan operation encounters an error condition (e.g. disconnection) More... | |
(instancetype _Nullable) | - init |
Default initialiser - builds an object then enables event callbacks to it. More... | |
(instancetype _Nullable) | - initWithEnabled: |
Initialiser which allows control over whether event callbacks should be enabled. More... | |
(void) | - startEvent |
Callback which is invoked when RFID/proxcard scanning begins. More... | |
(void) | - stopEvent |
Callback which is invoked when RFID/proxcard scanning ceases. More... | |
(void) | - timeoutEvent |
Callback which is invoked when no RFID tag or proxcard is scanned within the specified timeout. More... | |
Properties | |
ProtocolType _Nullable | delegate |
Delegate for receiving events from non-subclassed listener objects; defaults to nil. More... | |
- (void) dataEvent: | (GrabbaProxcardData *_Nonnull) | data |
Callback which is invoked when an RFID tag or proxcard is successfully scanned.
Scanning is invoked by calling startScan. This event will then be triggered if an RFID tag or proxcard is scanned before the set timeout elapses.
The proxcard scan engine will be turned off prior to this event being triggered. Consequently, it is still possible for this event to be triggered for a brief interval after stopScan .
Override this method to receive callbacks when the object is enabled (via init or enable) and the event is triggered.
data | Data structure containing the RFID tag/proxcard's serial number (unique identifier) and an integer representing its type |
- (void) disable |
Disable listening for events from this object, if not already disabled.
This will remove the listener object from the relevant event handler, if it had previously been added. Callbacks will no longer be triggered on this object, although they may be re-enabled by calling enable.
- (void) enable |
Enable listening for events from this object, if not already enabled.
This will add the listener object to the relevant event handler, if it has not already been added. Events will then trigger callbacks on this object until it is destroyed or disable is called.
- (void) errorEvent: | (GrabbaErrorCode *_Nonnull) | error |
Callback which is invoked when an RFID/proxcard scan operation encounters an error condition (e.g. disconnection)
Scanning is invoked by calling startScan. This event will then be triggered if an error is detected before the scan completes or times out.
The proxcard scan engine will be turned off prior to this event being triggered. Consequently, it is still possible for this event to be triggered for a brief interval after stopScan .
Override this method to receive callbacks when the object is enabled (via init or enable) and the event is triggered.
error | Details of the error condition which was detected |
- (instancetype _Nullable) init |
Default initialiser - builds an object then enables event callbacks to it.
nil
if it failed - (instancetype _Nullable) initWithEnabled: | (BOOL) | startEnabled |
Initialiser which allows control over whether event callbacks should be enabled.
startEnabled | If YES, the newly-allocated listener object is added to the relevant event handler, enabling receipt of event callbacks. If NO, no callbacks are received until enable is called. |
nil
if it failed - (void) startEvent |
Callback which is invoked when RFID/proxcard scanning begins.
Scanning is invoked by calling startScan. This event will then be triggered if the scan is able to commence as requested.
Override this method to receive callbacks when the object is enabled (via init or enable) and the event is triggered.
- (void) stopEvent |
Callback which is invoked when RFID/proxcard scanning ceases.
Scanning is invoked by calling startScan. This event will then be triggered when scanning ceases, which can occur for any of the following reasons:
If more than one event is triggered when scanning stops, no guarantees are provided as to the order in which those events are triggered.
Override this method to receive callbacks when the object is enabled (via init or enable) and the event is triggered.
- (void) timeoutEvent |
Callback which is invoked when no RFID tag or proxcard is scanned within the specified timeout.
Scanning is invoked by calling startScan. This event will then be triggered if the scan timeout elapses with no successful scans having occurred.
The proxcard scan engine will be turned off prior to this event being triggered. Consequently, it is still possible for this event to be triggered for a brief interval after stopScan .
Override this method to receive callbacks when the object is enabled (via init or enable) and the event is triggered.
|
readwritenonatomicweakinherited |
Delegate for receiving events from non-subclassed listener objects; defaults to nil.
Delegation may be used as an alternative to subclassing for receiving event callbacks. Any Grabba-defined listener class object (as opposed to a subclass thereof) will pass events on to a delegate, if one has been set and it has implemented the relevant protocol method.
If the delegate is to be written to whilst a callback to it is in progress, the write operation will block until that operation has completed. This ensures thread-safety.