Update WsServer.php
This commit is contained in:
parent
8bbc516f5e
commit
4e8fca9032
@ -63,7 +63,6 @@ class WsServer implements HttpServerInterface {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param \Ratchet\WebSocket\MessageComponentInterface|\Ratchet\MessageComponentInterface $component Your application to run with WebSockets
|
* @param \Ratchet\WebSocket\MessageComponentInterface|\Ratchet\MessageComponentInterface $component Your application to run with WebSockets
|
||||||
* @param int $keepAliveTimeout
|
|
||||||
* @note If you want to enable sub-protocols have your component implement WsServerInterface as well
|
* @note If you want to enable sub-protocols have your component implement WsServerInterface as well
|
||||||
*/
|
*/
|
||||||
public function __construct(ComponentInterface $component) {
|
public function __construct(ComponentInterface $component) {
|
||||||
@ -100,7 +99,6 @@ class WsServer implements HttpServerInterface {
|
|||||||
$this->ueFlowFactory = function() use ($reusableUnderflowException) {
|
$this->ueFlowFactory = function() use ($reusableUnderflowException) {
|
||||||
return $reusableUnderflowException;
|
return $reusableUnderflowException;
|
||||||
};
|
};
|
||||||
$this->keepAliveTimeout = $keepAliveTimeout;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -198,7 +196,6 @@ class WsServer implements HttpServerInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public function enableKeepAlive(LoopInterface $loop, $interval = 30) {
|
public function enableKeepAlive(LoopInterface $loop, $interval = 30) {
|
||||||
$this->keepAliveEnabled = true;
|
|
||||||
$lastPing = new Frame(uniqid(), true, Frame::OP_PING);
|
$lastPing = new Frame(uniqid(), true, Frame::OP_PING);
|
||||||
$pingedConnections = new \SplObjectStorage;
|
$pingedConnections = new \SplObjectStorage;
|
||||||
$splClearer = new \SplObjectStorage;
|
$splClearer = new \SplObjectStorage;
|
||||||
|
Loading…
Reference in New Issue
Block a user