began asynchronousfilereader
This commit is contained in:
committed by
Steffen Schröder
parent
08e8cd3432
commit
7b30e7ffc5
24
application/Structures/SocketStructure.php
Normal file
24
application/Structures/SocketStructure.php
Normal 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 = '';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user