<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.evtimer.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'evtimer.again.php',
    1 => 'EvTimer::again',
    2 => 'Restarts the timer watcher',
  ),
  'up' => 
  array (
    0 => 'class.evtimer.php',
    1 => 'EvTimer',
  ),
  'prev' => 
  array (
    0 => 'class.evtimer.php',
    1 => 'EvTimer',
  ),
  'next' => 
  array (
    0 => 'evtimer.construct.php',
    1 => 'EvTimer::__construct',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/ev/evtimer/again.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="evtimer.again" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">EvTimer::again</h1>
  <p class="verinfo">(PECL ev &gt;= 0.2.0)</p><p class="refpurpose"><span class="refname">EvTimer::again</span> &mdash; <span class="dc-title">Restarts the timer watcher</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-evtimer.again-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span>
   <span class="methodname"><strong>EvTimer::again</strong></span>(): <span class="type"><a href="language.types.void.php" class="type void">void</a></span></div>

  <p class="simpara">
   This will act as if the timer timed out and restart it again if it is
   repeating. The exact semantics are:
  </p>
  <ol type="1">
   <li class="listitem">
    <span class="simpara">
     if the timer is pending, its pending status is cleared.
    </span>
   </li>
   <li class="listitem">
    <span class="simpara">
     if the timer is started but non-repeating, stop it (as if it timed out).
    </span>
   </li>
   <li class="listitem">
    <span class="simpara">
     if the timer is repeating, either start it if necessary (with the
     <var class="varname">repeat</var>
     value), or reset the running timer to the
     <var class="varname">repeat</var>
     value.
    </span>
   </li>
  </ol>
 </div>

 <div class="refsect1 parameters" id="refsect1-evtimer.again-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">Diese Funktion besitzt keine Parameter.</p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-evtimer.again-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="simpara">
   Es wird kein Wert zurückgegeben.
  </p>
 </div>

 <div class="refsect1 seealso" id="refsect1-evtimer.again-seealso">
  <h3 class="title">Siehe auch</h3>
  <ul class="simplelist">
   <li>
    <span class="methodname"><a href="evwatcher.stop.php" class="methodname" rel="rdfs-seeAlso">EvWatcher::stop()</a> - Stops the watcher</span>
   </li>
  </ul>
 </div>

</div><?php manual_footer($setup); ?>