本文整理匯總了PHP中BatchJob::getTypeName方法的典型用法代碼示例。如果您正苦於以下問題:PHP BatchJob::getTypeName方法的具體用法?PHP BatchJob::getTypeName怎麽用?PHP BatchJob::getTypeName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類BatchJob
的用法示例。
在下文中一共展示了BatchJob::getTypeName方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: fromBatchQueuesStatusArray
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;
}
示例2: doFromObject
/**
* @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;
}
示例3: fromObject
/**
* @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;
}