Complete list parameters of requestStream method for ios.

hi, we are trying to decide which parameter we should use for ‘direct streaming’, and got a bit confused here. we got different list of parameter form samples and documentation page. can please advise where we can get the complete of list of parameters, and respective explanation?

from documentation page:

open class func requestStream(forCameraID cameraID: XPSDKViewID,

size: CGSize,

method: XPSDKVideoConnectionMethod,

signal: XPSDKVideoConnectionSignal,

fps:Int, compressionLevel:Int,

userInitiatedDownsampling:Bool,

keyFramesOnly:Bool,

resizeSupported: Bool,

time: NSDate?,

usesTranscoding: Bool,

successHandler: @escaping (XPSDKResponse, XPSDKVideoConnection) → Void,

failureHandler: FailureBlock?)

from sample:

XPMobileSDK.requestStream(forCameraID: cameraID, size: Constants.RequestStreamParameters.size, method: XPSDKVideoConnectionMethodPush, signal: XPSDKVideoConnectionSignalLive, fps: Constants.RequestStreamParameters.fps, compressionLevel: Constants.RequestStreamParameters.compressionLevel, userInitiatedDownsampling: false, keyFramesOnly: false, resizeSupported: true, time: NSDate(), upstreamImageQuality: Constants.RequestStreamParameters.upstreamVideoQuality, closeConnectionOnError: Constants.RequestStreamParameters.closeConnectionOnError, successHandler: { [weakself] (_ response: XPSDKResponse, _ videoConnection: XPSDKVideoConnection) ->Voidinself?.setupCameraVideoView(videoConnection: videoConnection) }, failureHandler: nil) }

hi, i have figured it out. :slight_smile: