Added a method to expose the flashsocket
This commit is contained in:
parent
cd9a3cb43a
commit
478bdc10c5
@ -91,13 +91,22 @@ class App {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the FlashPolicy running in the FlashServer. Modifications of this object take effect immediately!
|
* Returns the FlashPolicy running in the flash server. Modifications of this object take effect immediately!
|
||||||
*
|
*
|
||||||
* @return FlashPolicy
|
* @return FlashPolicy
|
||||||
*/
|
*/
|
||||||
public function getFlashPolicy() {
|
public function getFlashPolicy() {
|
||||||
return $this->flashServer->getApp();
|
return $this->flashServer->getApp();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the FlashSocket of the flash server.
|
||||||
|
*
|
||||||
|
* @return \React\Socket\ServerInterface
|
||||||
|
*/
|
||||||
|
public function getFlashSocket() {
|
||||||
|
return $this->flashServer->getSocket();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add an endpiont/application to the server
|
* Add an endpiont/application to the server
|
||||||
|
Loading…
Reference in New Issue
Block a user