You can use the property option to apply different parameters according to your business logic.
To learn how to create and edit properties, please read this article.
orchestratorProperty- string (optional)
The default property can't be deleted in the portal, it will be applied in the following cases:
- you don't specify any property
- the property set in deliveryClientConfig doesn't match any property in the portal
- the property set is "default"
var orchestratorProperty: String?
@orchestratorProperty (nonatomic, nonnull) NSString *orchestratorProperty
It is then required to call the Property in the builder.
deliveryClient = CTLDeliveryClientBuilder.clientBuilder()
.deliveryClientKey(<#yourdeliveryClientKey#>)
.qosModule(#yourQosModule#>)
.contentId(<#yourContentId#>)
.orchestratorProperty(<#yourProperty#>)
.build(#yourManifestUrl#>)
deliveryClient?.start()