Interface for receiving magstripe reader events.
Objects which implement this protocol may receive callbacks when these events occur, via delegation from a GrabbaMagstripeListener object.
Note that this protocol need not be directly implemented; it may be simpler to subclass GrabbaMagstripeListener 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) | - dataEvent: |
Callback which is invoked when one or more tracks are successfully read from a magstripe card. More... | |
- (void) dataEvent: | (GrabbaMagstripeData *_Nonnull) | data |
Callback which is invoked when one or more tracks are successfully read from a magstripe card.
This will be triggered after a successful swipe of a magstripe card through the Grabba device's reading slot.
data | The data which was read from the magnetic stripe; see API_Types::MagstripeData for details. |