began asynchronousfilereader

This commit is contained in:
kremsy
2014-02-07 00:19:53 +01:00
committed by Steffen Schröder
parent 08e8cd3432
commit 7b30e7ffc5
2 changed files with 108 additions and 0 deletions

View File

@ -0,0 +1,24 @@
<?php
/**
* Created by PhpStorm.
* User: Lukas
* Date: 07.02.14
* Time: 00:18
*/
namespace Structures;
/**
* Socket Structure
*/
class SocketStructure {
public $streamBuffer;
public $socket;
public $function;
public function construct($socket, $function) {
$this->socket = $socket;
$this->function = $function;
$this->streamBuffer = '';
}
}