Interface ComponentInterface
This is the interface to build a Ratchet application with. It implements the decorator pattern to build an application stack
Direct known implementers
Ratchet\MessageComponentInterface, Ratchet\Wamp\WampServerInterface, Ratchet\WebSocket\MessageComponentInterfaceIndirect known implementers
Ratchet\Http\HttpServer, Ratchet\Http\HttpServerInterface, Ratchet\Wamp\WampServer, Ratchet\WebSocket\WsServer, Ratchet\Http\OriginCheck, Ratchet\Http\Router, Ratchet\Server\EchoServer, Ratchet\Server\FlashPolicy, Ratchet\Server\IpBlackList, Ratchet\Session\SessionProvider, Ratchet\Wamp\ServerProtocol, Ratchet\Wamp\TopicManager
public
|
#
onOpen(
When a new connection is opened it will be passed to this method |
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 |