timer listening $time parameter renamed

This commit is contained in:
Steffen Schröder 2014-05-12 20:00:58 +02:00
parent 07d0016151
commit 74decfd1d9
2 changed files with 9 additions and 9 deletions

View File

@ -25,14 +25,14 @@ class TimerListening {
* *
* @param TimerListener $listener * @param TimerListener $listener
* @param string $method * @param string $method
* @param float $deltaTime * @param float $deltaSeconds
* @param bool $oneTime * @param bool $oneTime
* @param bool $instantCall * @param bool $instantCall
*/ */
public function __construct(TimerListener $listener, $method, $deltaTime, $oneTime = false, $instantCall = true) { public function __construct(TimerListener $listener, $method, $deltaSeconds, $oneTime = false, $instantCall = true) {
$this->listener = $listener; $this->listener = $listener;
$this->method = $method; $this->method = $method;
$this->deltaTime = $deltaTime / 1000.; $this->deltaTime = $deltaSeconds / 1000.;
$this->oneTime = (bool)$oneTime; $this->oneTime = (bool)$oneTime;
$this->instantCall = (bool)$instantCall; $this->instantCall = (bool)$instantCall;
if (!$this->instantCall) { if (!$this->instantCall) {

View File

@ -32,10 +32,10 @@ class TimerManager {
* *
* @param TimerListener $listener * @param TimerListener $listener
* @param string $method * @param string $method
* @param float $time * @param float $seconds
*/ */
public function registerOneTimeListening(TimerListener $listener, $method, $time) { public function registerOneTimeListening(TimerListener $listener, $method, $seconds) {
$this->registerTimerListening($listener, $method, $time, true); $this->registerTimerListening($listener, $method, $seconds, true);
} }
/** /**
@ -43,18 +43,18 @@ class TimerManager {
* *
* @param TimerListener $listener * @param TimerListener $listener
* @param string $method * @param string $method
* @param float $time * @param float $seconds
* @param bool $oneTime * @param bool $oneTime
* @return bool * @return bool
*/ */
public function registerTimerListening(TimerListener $listener, $method, $time, $oneTime = false) { public function registerTimerListening(TimerListener $listener, $method, $seconds, $oneTime = false) {
if ((!is_string($method) || !method_exists($listener, $method)) && !is_callable($method)) { if ((!is_string($method) || !method_exists($listener, $method)) && !is_callable($method)) {
trigger_error("Given Listener (" . get_class($listener) . ") can't handle Timer Callback (No Method '{$method}')!"); trigger_error("Given Listener (" . get_class($listener) . ") can't handle Timer Callback (No Method '{$method}')!");
return false; return false;
} }
// Build Timer Listening // Build Timer Listening
$listening = new TimerListening($listener, $method, $time, $oneTime); $listening = new TimerListening($listener, $method, $seconds, $oneTime);
array_push($this->timerListenings, $listening); array_push($this->timerListenings, $listening);
return true; return true;