Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.221.21.111
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
react /
event-loop /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Tick
[ DIR ]
drwxr-xr-x
2018-07-11 09:00
Timer
[ DIR ]
drwxr-xr-x
2018-07-11 09:00
ExtEvLoop.php
5.82
KB
-rw-r--r--
2018-07-11 09:00
ExtEventLoop.php
7.35
KB
-rw-r--r--
2018-07-11 09:00
ExtLibevLoop.php
5.45
KB
-rw-r--r--
2018-07-11 09:00
ExtLibeventLoop.php
8.36
KB
-rw-r--r--
2018-07-11 09:00
Factory.php
1.19
KB
-rw-r--r--
2018-07-11 09:00
LoopInterface.php
18.22
KB
-rw-r--r--
2018-07-11 09:00
SignalsHandler.php
1.28
KB
-rw-r--r--
2018-07-11 09:00
StreamSelectLoop.php
8.69
KB
-rw-r--r--
2018-07-11 09:00
TimerInterface.php
492
B
-rw-r--r--
2018-07-11 09:00
Save
Rename
<?php namespace React\EventLoop; /** * The `Factory` class exists as a convenient way to pick the best available event loop implementation. */ final class Factory { /** * Creates a new event loop instance * * ```php * $loop = React\EventLoop\Factory::create(); * ``` * * This method always returns an instance implementing `LoopInterface`, * the actual event loop implementation is an implementation detail. * * This method should usually only be called once at the beginning of the program. * * @return LoopInterface */ public static function create() { // @codeCoverageIgnoreStart if (\class_exists('libev\EventLoop', false)) { return new ExtLibevLoop(); } elseif (\class_exists('EvLoop', false)) { return new ExtEvLoop(); } elseif (\class_exists('EventBase', false)) { return new ExtEventLoop(); } elseif (\function_exists('event_base_new') && \PHP_VERSION_ID < 70000) { // only use ext-libevent on PHP < 7 for now return new ExtLibeventLoop(); } return new StreamSelectLoop(); // @codeCoverageIgnoreEnd } }