AvailabilityChecker
public protocol AvailabilityChecker
You can customise the checking of purchased and user toggled conditional features by implementing this protocol.
Implementations must be safe to call from any thread or queue, so that callers
testing isAvailable
on a feature do not need to be concerned about this even if running
on a background queue or an ActionSession that is not on the main queue.
Implementations must also take care to examine the ancestors of features to ensure the correct result is returned from isAvailable.
-
Return whether or not the specified feature is currently available. Implementations must only return
true
if all ancesters of the feature are also available.- return:
nil
if the state of this feature or its ancestors is not yet known, or a boolean value indicating whether or not this feature and all its ancestors are available.
Declaration
Swift
func isAvailable(_ feature: ConditionalFeatureDefinition.Type) -> Bool?
- return:
-
Force the availability checker to throw away any cached results. This must be called if anything that affects feature availability changes, e.g. a product is purchased, a receipt expires, a user turns off a feature, or grants a system permission like Location tracking
Declaration
Swift
func invalidate()