download maps asynchronously

This commit is contained in:
kremsy
2014-02-07 17:27:09 +01:00
committed by Steffen Schröder
parent 4875c14a7d
commit 4c8b247896
5 changed files with 184 additions and 217 deletions

View File

@ -14,11 +14,13 @@ class SocketStructure {
public $socket;
public $function;
public $url;
public $creationTime;
public function __construct($url, $socket, $function) {
$this->url = $url;
$this->socket = $socket;
$this->function = $function;
$this->creationTime = time();
$this->streamBuffer = '';
}
}