IAGSManagerDelegate
@objc
public protocol IAGSManagerDelegate : NSObjectProtocol
A protocol that defines methods that GroundSage instances call on their delegates to handle callback from server.
-
Tells the delegate that the SDK received the density update from the server. This callback will be triggered if user enter any region.
Declaration
Swift
func didUpdate(_ manager: IAGSManager, venueDensity: IAGSVenueDensity)
Parameters
manager
GroundSage manager instance
venueDensity
Venue density information
-
Tells the delegate that you entered a region
Declaration
Swift
func didEnterDensityRegion(_ manager: IAGSManager, region: IARegion)
Parameters
manager
GroundSage manager instance
region
The region related to event.
-
Tells the delegate that you exited a region
Declaration
Swift
func didExitDensityRegion(_ manager: IAGSManager, region: IARegion)
Parameters
manager
GroundSage manager instance
region
The region related to event.