AI-generated Key Takeaways
-
IMAPodStreamRequest is a data object for requesting a pod serving stream.
-
It includes a read-only property
customAssetKey
for the stream request. -
You can initialize an IMAPodStreamRequest with network code, custom asset key, ad display container, and video display, optionally including user context.
-
Another initialization method allows including a picture in picture proxy for tracking PIP events.
IMAPodStreamRequest
@interface IMAPodStreamRequest : IMAStreamRequest
Data object describing a stream request for a pod serving stream.
-
The custom asset key for the stream request.
Declaration
Swift
var customAssetKey: String { get }
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull customAssetKey;
-
Initializes a stream request instance with the given network code and custom asset key. Uses the given ad display container to display the stream.
Declaration
Swift
init(networkCode: String, customAssetKey: String, adDisplayContainer: IMAAdDisplayContainer, videoDisplay: any IMAVideoDisplay, userContext: Any?)
Objective-C
- (nonnull instancetype) initWithNetworkCode:(nonnull NSString *)networkCode customAssetKey:(nonnull NSString *)customAssetKey adDisplayContainer:(nonnull IMAAdDisplayContainer *)adDisplayContainer videoDisplay:(nonnull id<IMAVideoDisplay>)videoDisplay userContext:(nullable id)userContext;
Parameters
networkCode
The network code for the stream.
customAssetKey
The asset key for the stream.
adDisplayContainer
The IMAAdDisplayContainer for rendering the ad UI.
videoDisplay
The IMAVideoDisplay where the stream will be played.
userContext
The user context for tracking requests (optional)
Return Value
The IMAPodStreamRequest instance.
-
-initWithNetworkCode:customAssetKey:adDisplayContainer:videoDisplay:pictureInPictureProxy:userContext:
Initializes a stream request instance with the given network code and custom asset key. Uses the given ad display container to display the stream. Uses the picture in picture proxy to track PIP events.
Declaration
Swift
init(networkCode: String, customAssetKey: String, adDisplayContainer: IMAAdDisplayContainer, videoDisplay: any IMAVideoDisplay, pictureInPictureProxy: IMAPictureInPictureProxy?, userContext: Any?)
Objective-C
- (nonnull instancetype) initWithNetworkCode:(nonnull NSString *)networkCode customAssetKey:(nonnull NSString *)customAssetKey adDisplayContainer:(nonnull IMAAdDisplayContainer *)adDisplayContainer videoDisplay:(nonnull id<IMAVideoDisplay>)videoDisplay pictureInPictureProxy: (nullable IMAPictureInPictureProxy *)pictureInPictureProxy userContext:(nullable id)userContext;
Parameters
networkCode
The network code for the stream.
customAssetKey
The asset key for the stream.
adDisplayContainer
The IMAAdDisplayContainer for rendering the ad UI.
videoDisplay
The IMAVideoDisplay where the stream will be played.
pictureInPictureProxy
The IMAPictureInPictureProxy for tracking PIP events.
userContext
The user context for tracking requests (optional)
Return Value
The IMAPodStreamRequest instance.