当前位置: 首页>>代码示例>>PHP>>正文


PHP Task::getTaskName方法代码示例

本文整理汇总了PHP中Task::getTaskName方法的典型用法代码示例。如果您正苦于以下问题:PHP Task::getTaskName方法的具体用法?PHP Task::getTaskName怎么用?PHP Task::getTaskName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Task的用法示例。


在下文中一共展示了Task::getTaskName方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: main

    /**
     * Perform the work.
     *
     * @throws BuildException if there is an error.
     */
    public function main()
    {
        $errorMessages = '';
        for ($i = 0; $i <= $this->retryCount; $i++) {
            try {
                $this->nestedTask->perform();
                break;
            } catch (Exception $e) {
                $errorMessages .= $e->getMessage();
                if ($i >= $this->retryCount) {
                    $taskName = $this->nestedTask->getTaskName();
                    $exceptionMessage = <<<EXCEPTION_MESSAGE
Task [{$taskName}] failed after [{$this->retryCount}] attempts; giving up
Error messages:
{$errorMessages}
EXCEPTION_MESSAGE;
                    throw new BuildException($exceptionMessage, $this->getLocation());
                }
                if ($this->retryDelay > 0) {
                    $msg = sprintf('Attempt [%s]: error occurred; retrying after %s s...', $i, $this->retryDelay);
                } else {
                    $msg = sprintf('Attempt [%s]: error occurred; retrying...', $i);
                }
                $this->log($msg, Project::MSG_INFO);
                $errorMessages .= PHP_EOL;
                if ($this->retryDelay > 0) {
                    sleep($this->retryDelay);
                }
            }
        }
    }
开发者ID:tammyd,项目名称:phing,代码行数:36,代码来源:Retry.php

示例2: getTaskName

 /**
  *  Get the name of the task to use in logging messages.
  *
  * @return string The task's name
  */
 public function getTaskName()
 {
     return $this->realThing === null ? parent::getTaskName() : $this->realThing->getTaskName();
 }
开发者ID:xxspartan16,项目名称:BMS-Market,代码行数:9,代码来源:UnknownElement.php

示例3: getTaskName

 /**
  *  Get the name of the task to use in logging messages.
  *
  * @return string The task's name
  */
 public function getTaskName()
 {
     return $this->realThing === null || !$this->realThing instanceof Task ? parent::getTaskName() : $this->realThing->getTaskName();
 }
开发者ID:Geeklog-Japan,项目名称:geeklog-japan,代码行数:9,代码来源:UnknownElement.php

示例4: testUpdate

 function testUpdate()
 {
     //Arrange
     $task_name = "Wash the dog";
     $id = 1;
     $due_date = null;
     $test_task = new Task($task_name, $id, $due_date);
     $test_task->save();
     $new_task_name = "Clean the dog";
     //Act
     $test_task->update($new_task_name);
     //Assert
     $this->assertEquals("Clean the dog", $test_task->getTaskName());
 }
开发者ID:kennygrage,项目名称:epic_to_do_list_mySQL,代码行数:14,代码来源:TaskTest.php


注:本文中的Task::getTaskName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。