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
managerGroundSage manager instance
venueDensityVenue density information
-
Tells the delegate that you entered a region
Declaration
Swift
func didEnterDensityRegion(_ manager: IAGSManager, region: IARegion)Parameters
managerGroundSage manager instance
regionThe region related to event.
-
Tells the delegate that you exited a region
Declaration
Swift
func didExitDensityRegion(_ manager: IAGSManager, region: IARegion)Parameters
managerGroundSage manager instance
regionThe region related to event.
View on GitHub
IAGSManagerDelegate Protocol Reference