UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

21 lines (20 loc) 657 B
/** * @export * @class Scheduling */ export declare class Scheduling { /** * Specifies the priority of this encoding (0 - 100). Higher numbers mean higher priority. Default is 50. * @type {number} * @memberof Scheduling */ priority?: number; /** * List of prewarmed encoder pools. If set, prewarmed encoders from pools with these IDs will be used for the encoding if available. The pool IDs will be tried in the order in which they are passed. * @type {string[]} * @memberof Scheduling */ prewarmedEncoderPoolIds?: string[]; constructor(obj?: Partial<Scheduling>); } export default Scheduling;