function KalturaClient::queuePendingBatchJob in Kaltura 5        
                          
                  
                        Same name and namespace in other branches
- 6 kaltura_client/kaltura_client.php \KalturaClient::queuePendingBatchJob()
 
 
File
 
   - kaltura_client/kaltura_client.php, line 1531
 
  
  Class
  
  - KalturaClient 
 
  
Code
function queuePendingBatchJob($kalturaSessionUser, $jobType, $processorName, $processorTimeout, $overQuotaPartners = null, $deferedPartners = null) {
  $params = array();
  $params["job_type"] = $jobType;
  $params["processor_name"] = $processorName;
  $params["processor_timeout"] = $processorTimeout;
  $this
    ->addOptionalParam($params, "over_quota_partners", $overQuotaPartners);
  $this
    ->addOptionalParam($params, "defered_partners", $deferedPartners);
  $result = $this
    ->hit("queuependingbatchjob", $kalturaSessionUser, $params);
  return $result;
}