Page Summary
-
The
TAGContainerOpenerNotifierprotocol provides a mechanism for receiving notifications when a container is ready for use within the Tag Manager system. -
Developers can utilize this protocol by implementing it in a class and passing an instance to the
openContainerWithId:tagManager:openType:timeout:notifier:method of theTAGContainerOpenerclass. -
The
containerAvailable:method is the sole requirement of this protocol and gets invoked when the desired container becomes available, providing access to theTAGContainerobject.
Overview
A class that implements this protocol will receive a notification when a container is available for use.
Developers can pass an instance of a class that implements this protocol to openContainerWithId:tagManager:openType:timeout:notifier: (TAGContainerOpener)
Public Member Functions | |
| (void) | - containerAvailable: |
| Called when the container is available. | |
Member Function Documentation
| - (void) containerAvailable: | (TAGContainer *) | container |
Called when the container is available.
- Parameters:
-
container The requested container.