31 lines
696 B
PHP
31 lines
696 B
PHP
<?php
|
|
namespace Ratchet\Command;
|
|
use Ratchet\SocketInterface;
|
|
|
|
class Runtime implements CommandInterface {
|
|
/**
|
|
* @var SocketInterface
|
|
*/
|
|
protected $_socket;
|
|
|
|
/**
|
|
* @var Closure
|
|
*/
|
|
protected $_command = null;
|
|
|
|
public function __construct(SocketInterface $socket) {
|
|
$this->_socket = $socket;
|
|
}
|
|
|
|
/**
|
|
* Your closure should accept a single \Ratchet\Socket parameter
|
|
* @param Closure Your closure/lambda to execute when the time comes
|
|
*/
|
|
public function setCommand(\Closure $callback) {
|
|
$this->_command = $callback;
|
|
}
|
|
|
|
public function execute() {
|
|
return call_user_func($this->_command, $socket);
|
|
}
|
|
} |