whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Network
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Network/ServerInterface.php
<?php declare(strict_types=1); namespace Psl\Network; use Generator; use Psl\IO; /** * Generic interface for a class able to accept socket connections. */ interface ServerInterface extends IO\CloseHandleInterface { /** * Retrieve the next pending connection. * * Will wait for new connections if none are pending. * * @throws Exception\RuntimeException In case failed to accept incoming connection. * @throws Exception\AlreadyStoppedException In case the server socket has already been closed. */ public function nextConnection(): SocketInterface; /** * Return a generator that yield's connections, until the server is closed. * * @throws Exception\RuntimeException In case failed to accept incoming connection. * * @return Generator<null, SocketInterface, void, null> */ public function incoming(): Generator; /** * Return the local (listening) address for the server. * * @throws Exception\RuntimeException In case failed to retrieve local address. * @throws Exception\AlreadyStoppedException In case the server socket has already been closed. */ public function getLocalAddress(): Address; /** * Stop listening; open connection are not closed. */ public function close(): void; }
Copyright ©2021 || Defacer Indonesia