added new socket manager, errorhandling and testing is not finished yet
This commit is contained in:
12
libs/React/Socket/ConnectionInterface.php
Normal file
12
libs/React/Socket/ConnectionInterface.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace React\Socket;
|
||||
|
||||
use Evenement\EventEmitterInterface;
|
||||
use React\Stream\ReadableStreamInterface;
|
||||
use React\Stream\WritableStreamInterface;
|
||||
|
||||
interface ConnectionInterface extends ReadableStreamInterface, WritableStreamInterface
|
||||
{
|
||||
public function getRemoteAddress();
|
||||
}
|
Reference in New Issue
Block a user