interface IPlayerSdkRegistry
package com.turner.top.sdk.core.registry
Keeps track of components created by the sdk
Methods
addComponent (comp:Dynamic):IPlayerSdkRegistry
Add a component to the registry
Parameters:
comp | The component to add |
|---|
getComponentById (id:String):Null<Dynamic>
Get a registered component reference by id
Parameters:
id | The id of the component to retrieve |
|---|
Returns:
Requested component reference if it exists, otherwise Null
removeComponent (comp:Dynamic):IPlayerSdkRegistry
Remove a component from the registry
Parameters:
comp | The component to remove from the registry |
|---|