Class HttpServer
This is the interface to build a Ratchet application with. It implements the decorator pattern to build an application stack
- Ratchet\Http\HttpServer implements Ratchet\MessageComponentInterface uses Ratchet\Http\CloseResponseTrait
public
|
|
public
|
#
onOpen(
When a new connection is opened it will be passed to this method |
public
|
#
onMessage(
Triggered when a client sends data through the socket |
public
|
#
onClose(
This is called before or after a socket is closed (depends on how it's closed). SendMessage to $conn will not result in an error if it has already been closed. |
public
|
#
onError(
If there is an error with one of the sockets, or somewhere in the application where an Exception is thrown, the Exception is sent back down the stack, handled by the Server and bubbled back up the application through this method |
protected
|
$_reqParser | |
#
Buffers incoming HTTP requests returning a Guzzle Request when coalesced |
protected
|
$_httpServer | |