本文整理汇总了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;
}