Grabba Driver for iOS
Unified driver for Grabba devices on the iOS operating system
<GrabbaMagstripeProtocol> Protocol Reference

Description

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.

See also
GrabbaMagstripeAPI for related API functions

Instance Methods

(void) - dataEvent:
 Callback which is invoked when one or more tracks are successfully read from a magstripe card. More...
 

Method Documentation

◆ dataEvent:()

- (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.

Parameters
dataThe data which was read from the magnetic stripe; see API_Types::MagstripeData for details.
Note
Implementations of this method are required to be thread-safe; no guarantees are made about which thread(s) they will be called from.