public static function fromBatchQueuesStatusArray($arr)
 {
     $newArr = new KalturaBatchQueuesStatusArray();
     foreach ($arr as $obj) {
         $nObj = new KalturaBatchQueuesStatus();
         $nObj->jobType = $obj['JOB_TYPE'];
         $nObj->typeName = BatchJob::getTypeName($nObj->jobType);
         $nObj->size = $obj['JOB_TYPE_COUNT'];
         if (isset($obj['CREATED_AT_AVG'])) {
             $nObj->waitTime = $obj['CREATED_AT_AVG'];
         }
         $newArr[] = $nObj;
     }
     return $newArr;
 }
Exemplo n.º 2
0
 /**
  * @param SchedulerWorker $dbData
  * @return KalturaScheduler
  */
 public function doFromObject($dbData, KalturaDetachedResponseProfile $responseProfile = null)
 {
     parent::doFromObject($dbData, $responseProfile);
     $this->typeName = BatchJob::getTypeName($this->type);
     $statusesArray = $dbData->getStatuses();
     if (is_array($statusesArray)) {
         $this->statuses = KalturaSchedulerStatusArray::fromValuesArray($statusesArray, $this->schedulerId, $this->schedulerConfiguredId, $this->id, $this->configuredId, $this->type);
     }
     $this->lastStatusStr = date('d-m-Y H:i:s', $this->lastStatus);
     return $this;
 }
 /**
  * @param SchedulerWorker $dbData
  * @return KalturaScheduler
  */
 public function fromObject($dbData)
 {
     parent::fromObject($dbData);
     $this->typeName = BatchJob::getTypeName($this->type);
     $statusesArray = $dbData->getStatuses();
     if (is_array($statusesArray)) {
         $this->statuses = KalturaSchedulerStatusArray::fromValuesArray($statusesArray, $this->schedulerId, $this->schedulerConfiguredId, $this->id, $this->configuredId, $this->type);
     }
     $this->lastStatus = $dbData->getLastStatus(null);
     $this->lastStatusStr = date('d-m-Y H:i:s', $this->lastStatus);
     $this->configs = KalturaSchedulerConfigArray::fromSchedulerConfigArray($dbData->getConfigs());
     return $this;
 }