From 3308ce4948b49c94ab32af062b7fb70ceb6cd806 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 2 Jul 2024 12:10:43 +0200 Subject: dup v5 --- .gitignore | 9 + 0001-missing-header.patch | 24 + 0002-fix-implicit-int.patch | 27 + Makefile | 4 + PHPINFO | 42 + REFLECTION | 9855 +++++++++++++++++++++++++++++++++++++++++++ php-pecl-swoole5.spec | 1033 +++++ php-pecl-swoole6.spec | 1033 +++++ 8 files changed, 12027 insertions(+) create mode 100644 .gitignore create mode 100644 0001-missing-header.patch create mode 100644 0002-fix-implicit-int.patch create mode 100644 Makefile create mode 100644 PHPINFO create mode 100644 REFLECTION create mode 100644 php-pecl-swoole5.spec create mode 100644 php-pecl-swoole6.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..01f0400 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +clog +package-*.xml +*.tgz +*.tar.bz2 +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm diff --git a/0001-missing-header.patch b/0001-missing-header.patch new file mode 100644 index 0000000..58784aa --- /dev/null +++ b/0001-missing-header.patch @@ -0,0 +1,24 @@ +From 10feb6a1ca1c396d323f4bf92acd67feae758a62 Mon Sep 17 00:00:00 2001 +From: Remi Collet +Date: Thu, 6 Jun 2024 10:08:05 +0200 +Subject: [PATCH] missing header + +--- + thirdparty/php83/pdo_odbc/odbc_driver.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/thirdparty/php83/pdo_odbc/odbc_driver.c b/thirdparty/php83/pdo_odbc/odbc_driver.c +index c83da646c..a5e3a8b4f 100644 +--- a/thirdparty/php83/pdo_odbc/odbc_driver.c ++++ b/thirdparty/php83/pdo_odbc/odbc_driver.c +@@ -25,6 +25,7 @@ + #include "pdo/php_pdo.h" + #include "pdo/php_pdo_driver.h" + #include "zend_exceptions.h" ++#include + + static void pdo_odbc_fetch_error_func(pdo_dbh_t *dbh, pdo_stmt_t *stmt, zval *info) { + pdo_odbc_db_handle *H = (pdo_odbc_db_handle *) dbh->driver_data; +-- +2.45.1 + diff --git a/0002-fix-implicit-int.patch b/0002-fix-implicit-int.patch new file mode 100644 index 0000000..728187d --- /dev/null +++ b/0002-fix-implicit-int.patch @@ -0,0 +1,27 @@ +From c127c74ba12ffb62afa653710c574f28e469e7a7 Mon Sep 17 00:00:00 2001 +From: Remi Collet +Date: Thu, 6 Jun 2024 10:16:26 +0200 +Subject: [PATCH 2/2] fix implicit int + +--- + ext-src/php_swoole_call_stack.h | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/ext-src/php_swoole_call_stack.h b/ext-src/php_swoole_call_stack.h +index 8c89f8305..639a303d7 100644 +--- a/ext-src/php_swoole_call_stack.h ++++ b/ext-src/php_swoole_call_stack.h +@@ -18,8 +18,8 @@ + + #ifdef ZEND_CHECK_STACK_LIMIT + #define HOOK_PHP_CALL_STACK(callback) \ +- auto __stack_limit = EG(stack_limit); \ +- auto __stack_base = EG(stack_base); \ ++ void *__stack_limit = EG(stack_limit); \ ++ void *__stack_base = EG(stack_base); \ + EG(stack_base) = (void *) 0; \ + EG(stack_limit) = (void *) 0; \ + callback EG(stack_limit) = __stack_limit; \ +-- +2.45.1 + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..13af741 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../../common/Makefile + diff --git a/PHPINFO b/PHPINFO new file mode 100644 index 0000000..dbd76ac --- /dev/null +++ b/PHPINFO @@ -0,0 +1,42 @@ + +swoole + +Swoole => enabled +Author => Swoole Team +Version => 5.1.3 +Built => Jun 6 2024 00:00:00 +coroutine => enabled with boost asm context +trace_log => enabled +epoll => enabled +eventfd => enabled +signalfd => enabled +cpu_affinity => enabled +spinlock => enabled +rwlock => enabled +sockets => enabled +openssl => OpenSSL 3.1.1 30 May 2023 +dtls => enabled +http2 => enabled +json => enabled +curl-native => enabled +pcre => enabled +c-ares => 1.28.1 +zlib => 1.2.13 +brotli => E16781312/D16781312 +mutex_timedlock => enabled +pthread_barrier => enabled +futex => enabled +mysqlnd => enabled +async_redis => enabled +coroutine_pgsql => enabled +coroutine_odbc => enabled +coroutine_sqlite => enabled + +Directive => Local Value => Master Value +swoole.enable_coroutine => On => On +swoole.enable_library => On => On +swoole.enable_fiber_mock => Off => Off +swoole.enable_preemptive_scheduler => Off => Off +swoole.display_errors => On => On +swoole.use_shortname => On => On +swoole.unixsock_buffer_size => 8388608 => 8388608 diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..c3d8b64 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,9855 @@ +Extension [ extension #94 swoole version 5.1.3 ] { + + - Dependencies { + Dependency [ json (Required) ] + Dependency [ mysqlnd (Required) ] + Dependency [ sockets (Required) ] + Dependency [ curl (Required) ] + Dependency [ pdo (Required) ] + } + + - INI { + Entry [ swoole.enable_coroutine ] + Current = 'On' + } + Entry [ swoole.enable_library ] + Current = 'On' + } + Entry [ swoole.enable_fiber_mock ] + Current = 'Off' + } + Entry [ swoole.enable_preemptive_scheduler ] + Current = 'Off' + } + Entry [ swoole.display_errors ] + Current = 'On' + } + Entry [ swoole.use_shortname ] + Current = 'On' + } + Entry [ swoole.unixsock_buffer_size ] + Current = '8388608' + } + } + + - Constants [421] { + Constant [ string SWOOLE_VERSION ] { 5.1.3 } + Constant [ int SWOOLE_VERSION_ID ] { 50103 } + Constant [ int SWOOLE_MAJOR_VERSION ] { 5 } + Constant [ int SWOOLE_MINOR_VERSION ] { 1 } + Constant [ int SWOOLE_RELEASE_VERSION ] { 3 } + Constant [ string SWOOLE_EXTRA_VERSION ] { } + Constant [ bool SWOOLE_DEBUG ] { } + Constant [ bool SWOOLE_HAVE_COMPRESSION ] { 1 } + Constant [ bool SWOOLE_HAVE_ZLIB ] { 1 } + Constant [ bool SWOOLE_HAVE_BROTLI ] { 1 } + Constant [ bool SWOOLE_USE_HTTP2 ] { 1 } + Constant [ bool SWOOLE_USE_SHORTNAME ] { 1 } + Constant [ int SWOOLE_SOCK_TCP ] { 1 } + Constant [ int SWOOLE_SOCK_TCP6 ] { 3 } + Constant [ int SWOOLE_SOCK_UDP ] { 2 } + Constant [ int SWOOLE_SOCK_UDP6 ] { 4 } + Constant [ int SWOOLE_SOCK_UNIX_DGRAM ] { 6 } + Constant [ int SWOOLE_SOCK_UNIX_STREAM ] { 5 } + Constant [ int SWOOLE_TCP ] { 1 } + Constant [ int SWOOLE_TCP6 ] { 3 } + Constant [ int SWOOLE_UDP ] { 2 } + Constant [ int SWOOLE_UDP6 ] { 4 } + Constant [ int SWOOLE_UNIX_DGRAM ] { 6 } + Constant [ int SWOOLE_UNIX_STREAM ] { 5 } + Constant [ bool SWOOLE_SOCK_SYNC ] { } + Constant [ bool SWOOLE_SOCK_ASYNC ] { 1 } + Constant [ int SWOOLE_SYNC ] { 2048 } + Constant [ int SWOOLE_ASYNC ] { 1024 } + Constant [ int SWOOLE_KEEP ] { 4096 } + Constant [ int SWOOLE_SSL ] { 512 } + Constant [ int SWOOLE_SSLv3_METHOD ] { 1 } + Constant [ int SWOOLE_SSLv3_SERVER_METHOD ] { 2 } + Constant [ int SWOOLE_SSLv3_CLIENT_METHOD ] { 3 } + Constant [ int SWOOLE_TLSv1_METHOD ] { 6 } + Constant [ int SWOOLE_TLSv1_SERVER_METHOD ] { 7 } + Constant [ int SWOOLE_TLSv1_CLIENT_METHOD ] { 8 } + Constant [ int SWOOLE_TLSv1_1_METHOD ] { 9 } + Constant [ int SWOOLE_TLSv1_1_SERVER_METHOD ] { 10 } + Constant [ int SWOOLE_TLSv1_1_CLIENT_METHOD ] { 11 } + Constant [ int SWOOLE_TLSv1_2_METHOD ] { 12 } + Constant [ int SWOOLE_TLSv1_2_SERVER_METHOD ] { 13 } + Constant [ int SWOOLE_TLSv1_2_CLIENT_METHOD ] { 14 } + Constant [ int SWOOLE_DTLS_SERVER_METHOD ] { 16 } + Constant [ int SWOOLE_DTLS_CLIENT_METHOD ] { 15 } + Constant [ int SWOOLE_SSLv23_METHOD ] { 0 } + Constant [ int SWOOLE_SSLv23_SERVER_METHOD ] { 4 } + Constant [ int SWOOLE_SSLv23_CLIENT_METHOD ] { 5 } + Constant [ int SWOOLE_TLS_METHOD ] { 0 } + Constant [ int SWOOLE_TLS_SERVER_METHOD ] { 4 } + Constant [ int SWOOLE_TLS_CLIENT_METHOD ] { 5 } + Constant [ int SWOOLE_SSL_TLSv1 ] { 8 } + Constant [ int SWOOLE_SSL_TLSv1_1 ] { 16 } + Constant [ int SWOOLE_SSL_TLSv1_2 ] { 32 } + Constant [ int SWOOLE_SSL_TLSv1_3 ] { 64 } + Constant [ int SWOOLE_SSL_DTLS ] { 128 } + Constant [ int SWOOLE_SSL_SSLv2 ] { 2 } + Constant [ int SWOOLE_EVENT_READ ] { 512 } + Constant [ int SWOOLE_EVENT_WRITE ] { 1024 } + Constant [ int SWOOLE_STRERROR_SYSTEM ] { 0 } + Constant [ int SWOOLE_STRERROR_GAI ] { 1 } + Constant [ int SWOOLE_STRERROR_DNS ] { 2 } + Constant [ int SWOOLE_STRERROR_SWOOLE ] { 9 } + Constant [ int SWOOLE_ERROR_MALLOC_FAIL ] { 501 } + Constant [ int SWOOLE_ERROR_SYSTEM_CALL_FAIL ] { 502 } + Constant [ int SWOOLE_ERROR_PHP_FATAL_ERROR ] { 503 } + Constant [ int SWOOLE_ERROR_NAME_TOO_LONG ] { 504 } + Constant [ int SWOOLE_ERROR_INVALID_PARAMS ] { 505 } + Constant [ int SWOOLE_ERROR_QUEUE_FULL ] { 506 } + Constant [ int SWOOLE_ERROR_OPERATION_NOT_SUPPORT ] { 507 } + Constant [ int SWOOLE_ERROR_PROTOCOL_ERROR ] { 508 } + Constant [ int SWOOLE_ERROR_WRONG_OPERATION ] { 509 } + Constant [ int SWOOLE_ERROR_PHP_RUNTIME_NOTICE ] { 510 } + Constant [ int SWOOLE_ERROR_FILE_NOT_EXIST ] { 700 } + Constant [ int SWOOLE_ERROR_FILE_TOO_LARGE ] { 701 } + Constant [ int SWOOLE_ERROR_FILE_EMPTY ] { 702 } + Constant [ int SWOOLE_ERROR_DNSLOOKUP_DUPLICATE_REQUEST ] { 710 } + Constant [ int SWOOLE_ERROR_DNSLOOKUP_RESOLVE_FAILED ] { 711 } + Constant [ int SWOOLE_ERROR_DNSLOOKUP_RESOLVE_TIMEOUT ] { 712 } + Constant [ int SWOOLE_ERROR_DNSLOOKUP_UNSUPPORTED ] { 713 } + Constant [ int SWOOLE_ERROR_DNSLOOKUP_NO_SERVER ] { 714 } + Constant [ int SWOOLE_ERROR_BAD_IPV6_ADDRESS ] { 720 } + Constant [ int SWOOLE_ERROR_UNREGISTERED_SIGNAL ] { 721 } + Constant [ int SWOOLE_ERROR_EVENT_SOCKET_REMOVED ] { 800 } + Constant [ int SWOOLE_ERROR_SESSION_CLOSED_BY_SERVER ] { 1001 } + Constant [ int SWOOLE_ERROR_SESSION_CLOSED_BY_CLIENT ] { 1002 } + Constant [ int SWOOLE_ERROR_SESSION_CLOSING ] { 1003 } + Constant [ int SWOOLE_ERROR_SESSION_CLOSED ] { 1004 } + Constant [ int SWOOLE_ERROR_SESSION_NOT_EXIST ] { 1005 } + Constant [ int SWOOLE_ERROR_SESSION_INVALID_ID ] { 1006 } + Constant [ int SWOOLE_ERROR_SESSION_DISCARD_TIMEOUT_DATA ] { 1007 } + Constant [ int SWOOLE_ERROR_SESSION_DISCARD_DATA ] { 1008 } + Constant [ int SWOOLE_ERROR_OUTPUT_BUFFER_OVERFLOW ] { 1009 } + Constant [ int SWOOLE_ERROR_OUTPUT_SEND_YIELD ] { 1010 } + Constant [ int SWOOLE_ERROR_SSL_NOT_READY ] { 1011 } + Constant [ int SWOOLE_ERROR_SSL_CANNOT_USE_SENFILE ] { 1012 } + Constant [ int SWOOLE_ERROR_SSL_EMPTY_PEER_CERTIFICATE ] { 1013 } + Constant [ int SWOOLE_ERROR_SSL_VERIFY_FAILED ] { 1014 } + Constant [ int SWOOLE_ERROR_SSL_BAD_CLIENT ] { 1015 } + Constant [ int SWOOLE_ERROR_SSL_BAD_PROTOCOL ] { 1016 } + Constant [ int SWOOLE_ERROR_SSL_RESET ] { 1017 } + Constant [ int SWOOLE_ERROR_SSL_HANDSHAKE_FAILED ] { 1018 } + Constant [ int SWOOLE_ERROR_PACKAGE_LENGTH_TOO_LARGE ] { 1201 } + Constant [ int SWOOLE_ERROR_PACKAGE_LENGTH_NOT_FOUND ] { 1202 } + Constant [ int SWOOLE_ERROR_DATA_LENGTH_TOO_LARGE ] { 1203 } + Constant [ int SWOOLE_ERROR_PACKAGE_MALFORMED_DATA ] { 1204 } + Constant [ int SWOOLE_ERROR_TASK_PACKAGE_TOO_BIG ] { 2001 } + Constant [ int SWOOLE_ERROR_TASK_DISPATCH_FAIL ] { 2002 } + Constant [ int SWOOLE_ERROR_TASK_TIMEOUT ] { 2003 } + Constant [ int SWOOLE_ERROR_HTTP2_STREAM_ID_TOO_BIG ] { 3001 } + Constant [ int SWOOLE_ERROR_HTTP2_STREAM_NO_HEADER ] { 3002 } + Constant [ int SWOOLE_ERROR_HTTP2_STREAM_NOT_FOUND ] { 3003 } + Constant [ int SWOOLE_ERROR_HTTP2_STREAM_IGNORE ] { 3004 } + Constant [ int SWOOLE_ERROR_HTTP2_SEND_CONTROL_FRAME_FAILED ] { 3005 } + Constant [ int SWOOLE_ERROR_AIO_BAD_REQUEST ] { 4001 } + Constant [ int SWOOLE_ERROR_AIO_CANCELED ] { 4002 } + Constant [ int SWOOLE_ERROR_AIO_TIMEOUT ] { 4003 } + Constant [ int SWOOLE_ERROR_CLIENT_NO_CONNECTION ] { 5001 } + Constant [ int SWOOLE_ERROR_SOCKET_CLOSED ] { 6001 } + Constant [ int SWOOLE_ERROR_SOCKET_POLL_TIMEOUT ] { 6002 } + Constant [ int SWOOLE_ERROR_SOCKS5_UNSUPPORT_VERSION ] { 7001 } + Constant [ int SWOOLE_ERROR_SOCKS5_UNSUPPORT_METHOD ] { 7002 } + Constant [ int SWOOLE_ERROR_SOCKS5_AUTH_FAILED ] { 7003 } + Constant [ int SWOOLE_ERROR_SOCKS5_SERVER_ERROR ] { 7004 } + Constant [ int SWOOLE_ERROR_SOCKS5_HANDSHAKE_FAILED ] { 7005 } + Constant [ int SWOOLE_ERROR_HTTP_PROXY_HANDSHAKE_ERROR ] { 7101 } + Constant [ int SWOOLE_ERROR_HTTP_INVALID_PROTOCOL ] { 7102 } + Constant [ int SWOOLE_ERROR_HTTP_PROXY_HANDSHAKE_FAILED ] { 7103 } + Constant [ int SWOOLE_ERROR_HTTP_PROXY_BAD_RESPONSE ] { 7104 } + Constant [ int SWOOLE_ERROR_HTTP_CONFLICT_HEADER ] { 7105 } + Constant [ int SWOOLE_ERROR_HTTP_CONTEXT_UNAVAILABLE ] { 7106 } + Constant [ int SWOOLE_ERROR_WEBSOCKET_BAD_CLIENT ] { 8501 } + Constant [ int SWOOLE_ERROR_WEBSOCKET_BAD_OPCODE ] { 8502 } + Constant [ int SWOOLE_ERROR_WEBSOCKET_UNCONNECTED ] { 8503 } + Constant [ int SWOOLE_ERROR_WEBSOCKET_HANDSHAKE_FAILED ] { 8504 } + Constant [ int SWOOLE_ERROR_WEBSOCKET_PACK_FAILED ] { 8505 } + Constant [ int SWOOLE_ERROR_WEBSOCKET_UNPACK_FAILED ] { 8506 } + Constant [ int SWOOLE_ERROR_WEBSOCKET_INCOMPLETE_PACKET ] { 8507 } + Constant [ int SWOOLE_ERROR_SERVER_MUST_CREATED_BEFORE_CLIENT ] { 9001 } + Constant [ int SWOOLE_ERROR_SERVER_TOO_MANY_SOCKET ] { 9002 } + Constant [ int SWOOLE_ERROR_SERVER_WORKER_TERMINATED ] { 9003 } + Constant [ int SWOOLE_ERROR_SERVER_INVALID_LISTEN_PORT ] { 9004 } + Constant [ int SWOOLE_ERROR_SERVER_TOO_MANY_LISTEN_PORT ] { 9005 } + Constant [ int SWOOLE_ERROR_SERVER_PIPE_BUFFER_FULL ] { 9006 } + Constant [ int SWOOLE_ERROR_SERVER_NO_IDLE_WORKER ] { 9007 } + Constant [ int SWOOLE_ERROR_SERVER_ONLY_START_ONE ] { 9008 } + Constant [ int SWOOLE_ERROR_SERVER_SEND_IN_MASTER ] { 9009 } + Constant [ int SWOOLE_ERROR_SERVER_INVALID_REQUEST ] { 9010 } + Constant [ int SWOOLE_ERROR_SERVER_CONNECT_FAIL ] { 9011 } + Constant [ int SWOOLE_ERROR_SERVER_INVALID_COMMAND ] { 9012 } + Constant [ int SWOOLE_ERROR_SERVER_IS_NOT_REGULAR_FILE ] { 9013 } + Constant [ int SWOOLE_ERROR_SERVER_SEND_TO_WOKER_TIMEOUT ] { 9014 } + Constant [ int SWOOLE_ERROR_SERVER_WORKER_EXIT_TIMEOUT ] { 9101 } + Constant [ int SWOOLE_ERROR_SERVER_WORKER_ABNORMAL_PIPE_DATA ] { 9102 } + Constant [ int SWOOLE_ERROR_SERVER_WORKER_UNPROCESSED_DATA ] { 9103 } + Constant [ int SWOOLE_ERROR_CO_OUT_OF_COROUTINE ] { 10001 } + Constant [ int SWOOLE_ERROR_CO_HAS_BEEN_BOUND ] { 10002 } + Constant [ int SWOOLE_ERROR_CO_HAS_BEEN_DISCARDED ] { 10003 } + Constant [ int SWOOLE_ERROR_CO_MUTEX_DOUBLE_UNLOCK ] { 10004 } + Constant [ int SWOOLE_ERROR_CO_BLOCK_OBJECT_LOCKED ] { 10005 } + Constant [ int SWOOLE_ERROR_CO_BLOCK_OBJECT_WAITING ] { 10006 } + Constant [ int SWOOLE_ERROR_CO_YIELD_FAILED ] { 10007 } + Constant [ int SWOOLE_ERROR_CO_GETCONTEXT_FAILED ] { 10008 } + Constant [ int SWOOLE_ERROR_CO_SWAPCONTEXT_FAILED ] { 10009 } + Constant [ int SWOOLE_ERROR_CO_MAKECONTEXT_FAILED ] { 10010 } + Constant [ int SWOOLE_ERROR_CO_IOCPINIT_FAILED ] { 10011 } + Constant [ int SWOOLE_ERROR_CO_PROTECT_STACK_FAILED ] { 10012 } + Constant [ int SWOOLE_ERROR_CO_STD_THREAD_LINK_ERROR ] { 10013 } + Constant [ int SWOOLE_ERROR_CO_DISABLED_MULTI_THREAD ] { 10014 } + Constant [ int SWOOLE_ERROR_CO_CANNOT_CANCEL ] { 10015 } + Constant [ int SWOOLE_ERROR_CO_NOT_EXISTS ] { 10016 } + Constant [ int SWOOLE_ERROR_CO_CANCELED ] { 10017 } + Constant [ int SWOOLE_ERROR_CO_TIMEDOUT ] { 10018 } + Constant [ int SWOOLE_ERROR_CO_SOCKET_CLOSE_WAIT ] { 10019 } + Constant [ int SWOOLE_TRACE_SERVER ] { 2 } + Constant [ int SWOOLE_TRACE_CLIENT ] { 4 } + Constant [ int SWOOLE_TRACE_BUFFER ] { 8 } + Constant [ int SWOOLE_TRACE_CONN ] { 16 } + Constant [ int SWOOLE_TRACE_EVENT ] { 32 } + Constant [ int SWOOLE_TRACE_WORKER ] { 64 } + Constant [ int SWOOLE_TRACE_MEMORY ] { 128 } + Constant [ int SWOOLE_TRACE_REACTOR ] { 256 } + Constant [ int SWOOLE_TRACE_PHP ] { 512 } + Constant [ int SWOOLE_TRACE_HTTP ] { 1024 } + Constant [ int SWOOLE_TRACE_HTTP2 ] { 2048 } + Constant [ int SWOOLE_TRACE_EOF_PROTOCOL ] { 4096 } + Constant [ int SWOOLE_TRACE_LENGTH_PROTOCOL ] { 8192 } + Constant [ int SWOOLE_TRACE_CLOSE ] { 16384 } + Constant [ int SWOOLE_TRACE_WEBSOCKET ] { 32768 } + Constant [ int SWOOLE_TRACE_REDIS_CLIENT ] { 65536 } + Constant [ int SWOOLE_TRACE_MYSQL_CLIENT ] { 131072 } + Constant [ int SWOOLE_TRACE_HTTP_CLIENT ] { 262144 } + Constant [ int SWOOLE_TRACE_AIO ] { 524288 } + Constant [ int SWOOLE_TRACE_SSL ] { 1048576 } + Constant [ int SWOOLE_TRACE_NORMAL ] { 2097152 } + Constant [ int SWOOLE_TRACE_CHANNEL ] { 4194304 } + Constant [ int SWOOLE_TRACE_TIMER ] { 8388608 } + Constant [ int SWOOLE_TRACE_SOCKET ] { 16777216 } + Constant [ int SWOOLE_TRACE_COROUTINE ] { 33554432 } + Constant [ int SWOOLE_TRACE_CONTEXT ] { 67108864 } + Constant [ int SWOOLE_TRACE_CO_HTTP_SERVER ] { 134217728 } + Constant [ int SWOOLE_TRACE_TABLE ] { 268435456 } + Constant [ int SWOOLE_TRACE_CO_CURL ] { 536870912 } + Constant [ int SWOOLE_TRACE_CARES ] { 1073741824 } + Constant [ int SWOOLE_TRACE_ZLIB ] { 2147483648 } + Constant [ int SWOOLE_TRACE_CO_PGSQL ] { 4294967296 } + Constant [ int SWOOLE_TRACE_CO_ODBC ] { 8589934592 } + Constant [ int SWOOLE_TRACE_CO_ORACLE ] { 17179869184 } + Constant [ int SWOOLE_TRACE_CO_SQLITE ] { 34359738368 } + Constant [ int SWOOLE_TRACE_ALL ] { 9223372036854775807 } + Constant [ int SWOOLE_LOG_DEBUG ] { 0 } + Constant [ int SWOOLE_LOG_TRACE ] { 1 } + Constant [ int SWOOLE_LOG_INFO ] { 2 } + Constant [ int SWOOLE_LOG_NOTICE ] { 3 } + Constant [ int SWOOLE_LOG_WARNING ] { 4 } + Constant [ int SWOOLE_LOG_ERROR ] { 5 } + Constant [ int SWOOLE_LOG_NONE ] { 6 } + Constant [ int SWOOLE_LOG_ROTATION_SINGLE ] { 0 } + Constant [ int SWOOLE_LOG_ROTATION_MONTHLY ] { 1 } + Constant [ int SWOOLE_LOG_ROTATION_DAILY ] { 2 } + Constant [ int SWOOLE_LOG_ROTATION_HOURLY ] { 3 } + Constant [ int SWOOLE_LOG_ROTATION_EVERY_MINUTE ] { 4 } + Constant [ int SWOOLE_IPC_NONE ] { 0 } + Constant [ int SWOOLE_IPC_UNIXSOCK ] { 1 } + Constant [ int SWOOLE_IPC_SOCKET ] { 3 } + Constant [ int SWOOLE_IOV_MAX ] { 1024 } + Constant [ int SWOOLE_FILELOCK ] { 2 } + Constant [ int SWOOLE_MUTEX ] { 3 } + Constant [ int SWOOLE_SEM ] { 4 } + Constant [ int SWOOLE_RWLOCK ] { 1 } + Constant [ int SWOOLE_SPINLOCK ] { 5 } + Constant [ int SWOOLE_MSGQUEUE_ORIENT ] { 1 } + Constant [ int SWOOLE_MSGQUEUE_BALANCE ] { 2 } + Constant [ int SWOOLE_TIMER_MIN_MS ] { 1 } + Constant [ float SWOOLE_TIMER_MIN_SEC ] { 0.001 } + Constant [ int SWOOLE_TIMER_MAX_MS ] { 9223372036854775807 } + Constant [ float SWOOLE_TIMER_MAX_SEC ] { 9.2233720368548E+15 } + Constant [ int SWOOLE_DEFAULT_MAX_CORO_NUM ] { 100000 } + Constant [ int SWOOLE_CORO_MAX_NUM_LIMIT ] { 9223372036854775807 } + Constant [ int SWOOLE_CORO_INIT ] { 0 } + Constant [ int SWOOLE_CORO_WAITING ] { 1 } + Constant [ int SWOOLE_CORO_RUNNING ] { 2 } + Constant [ int SWOOLE_CORO_END ] { 3 } + Constant [ int SWOOLE_EXIT_IN_COROUTINE ] { 2 } + Constant [ int SWOOLE_EXIT_IN_SERVER ] { 4 } + Constant [ int SWOOLE_CHANNEL_OK ] { 0 } + Constant [ int SWOOLE_CHANNEL_TIMEOUT ] { -1 } + Constant [ int SWOOLE_CHANNEL_CLOSED ] { -2 } + Constant [ int SWOOLE_CHANNEL_CANCELED ] { -3 } + Constant [ int SWOOLE_HOOK_TCP ] { 2 } + Constant [ int SWOOLE_HOOK_UDP ] { 4 } + Constant [ int SWOOLE_HOOK_UNIX ] { 8 } + Constant [ int SWOOLE_HOOK_UDG ] { 16 } + Constant [ int SWOOLE_HOOK_SSL ] { 32 } + Constant [ int SWOOLE_HOOK_TLS ] { 64 } + Constant [ int SWOOLE_HOOK_STREAM_FUNCTION ] { 128 } + Constant [ int SWOOLE_HOOK_STREAM_SELECT ] { 128 } + Constant [ int SWOOLE_HOOK_FILE ] { 256 } + Constant [ int SWOOLE_HOOK_STDIO ] { 32768 } + Constant [ int SWOOLE_HOOK_SLEEP ] { 512 } + Constant [ int SWOOLE_HOOK_PROC ] { 1024 } + Constant [ int SWOOLE_HOOK_CURL ] { 2048 } + Constant [ int SWOOLE_HOOK_NATIVE_CURL ] { 4096 } + Constant [ int SWOOLE_HOOK_BLOCKING_FUNCTION ] { 8192 } + Constant [ int SWOOLE_HOOK_SOCKETS ] { 16384 } + Constant [ int SWOOLE_HOOK_PDO_PGSQL ] { 65536 } + Constant [ int SWOOLE_HOOK_PDO_ODBC ] { 131072 } + Constant [ int SWOOLE_HOOK_PDO_SQLITE ] { 524288 } + Constant [ int SWOOLE_HOOK_ALL ] { 2147481599 } + Constant [ int SOCKET_ECANCELED ] { 125 } + Constant [ int SWOOLE_HTTP_CLIENT_ESTATUS_CONNECT_FAILED ] { -1 } + Constant [ int SWOOLE_HTTP_CLIENT_ESTATUS_REQUEST_TIMEOUT ] { -2 } + Constant [ int SWOOLE_HTTP_CLIENT_ESTATUS_SERVER_RESET ] { -3 } + Constant [ int SWOOLE_HTTP_CLIENT_ESTATUS_SEND_FAILED ] { -4 } + Constant [ int SWOOLE_HTTP2_TYPE_DATA ] { 0 } + Constant [ int SWOOLE_HTTP2_TYPE_HEADERS ] { 1 } + Constant [ int SWOOLE_HTTP2_TYPE_PRIORITY ] { 2 } + Constant [ int SWOOLE_HTTP2_TYPE_RST_STREAM ] { 3 } + Constant [ int SWOOLE_HTTP2_TYPE_SETTINGS ] { 4 } + Constant [ int SWOOLE_HTTP2_TYPE_PUSH_PROMISE ] { 5 } + Constant [ int SWOOLE_HTTP2_TYPE_PING ] { 6 } + Constant [ int SWOOLE_HTTP2_TYPE_GOAWAY ] { 7 } + Constant [ int SWOOLE_HTTP2_TYPE_WINDOW_UPDATE ] { 8 } + Constant [ int SWOOLE_HTTP2_TYPE_CONTINUATION ] { 9 } + Constant [ int SWOOLE_HTTP2_ERROR_NO_ERROR ] { 0 } + Constant [ int SWOOLE_HTTP2_ERROR_PROTOCOL_ERROR ] { 1 } + Constant [ int SWOOLE_HTTP2_ERROR_INTERNAL_ERROR ] { 2 } + Constant [ int SWOOLE_HTTP2_ERROR_FLOW_CONTROL_ERROR ] { 3 } + Constant [ int SWOOLE_HTTP2_ERROR_SETTINGS_TIMEOUT ] { 4 } + Constant [ int SWOOLE_HTTP2_ERROR_STREAM_CLOSED ] { 5 } + Constant [ int SWOOLE_HTTP2_ERROR_FRAME_SIZE_ERROR ] { 6 } + Constant [ int SWOOLE_HTTP2_ERROR_REFUSED_STREAM ] { 7 } + Constant [ int SWOOLE_HTTP2_ERROR_CANCEL ] { 8 } + Constant [ int SWOOLE_HTTP2_ERROR_COMPRESSION_ERROR ] { 9 } + Constant [ int SWOOLE_HTTP2_ERROR_CONNECT_ERROR ] { 10 } + Constant [ int SWOOLE_HTTP2_ERROR_ENHANCE_YOUR_CALM ] { 11 } + Constant [ int SWOOLE_HTTP2_ERROR_INADEQUATE_SECURITY ] { 12 } + Constant [ int SWOOLE_HTTP2_ERROR_HTTP_1_1_REQUIRED ] { 13 } + Constant [ int SWOOLE_MYSQLND_CR_UNKNOWN_ERROR ] { 2000 } + Constant [ int SWOOLE_MYSQLND_CR_CONNECTION_ERROR ] { 2002 } + Constant [ int SWOOLE_MYSQLND_CR_SERVER_GONE_ERROR ] { 2006 } + Constant [ int SWOOLE_MYSQLND_CR_OUT_OF_MEMORY ] { 2008 } + Constant [ int SWOOLE_MYSQLND_CR_SERVER_LOST ] { 2013 } + Constant [ int SWOOLE_MYSQLND_CR_COMMANDS_OUT_OF_SYNC ] { 2014 } + Constant [ int SWOOLE_MYSQLND_CR_CANT_FIND_CHARSET ] { 2019 } + Constant [ int SWOOLE_MYSQLND_CR_MALFORMED_PACKET ] { 2027 } + Constant [ int SWOOLE_MYSQLND_CR_NOT_IMPLEMENTED ] { 2054 } + Constant [ int SWOOLE_MYSQLND_CR_NO_PREPARE_STMT ] { 2030 } + Constant [ int SWOOLE_MYSQLND_CR_PARAMS_NOT_BOUND ] { 2031 } + Constant [ int SWOOLE_MYSQLND_CR_INVALID_PARAMETER_NO ] { 2034 } + Constant [ int SWOOLE_MYSQLND_CR_INVALID_BUFFER_USE ] { 2035 } + Constant [ int SWOOLE_REDIS_MODE_MULTI ] { 0 } + Constant [ int SWOOLE_REDIS_MODE_PIPELINE ] { 1 } + Constant [ int SWOOLE_REDIS_TYPE_NOT_FOUND ] { 0 } + Constant [ int SWOOLE_REDIS_TYPE_STRING ] { 1 } + Constant [ int SWOOLE_REDIS_TYPE_SET ] { 2 } + Constant [ int SWOOLE_REDIS_TYPE_LIST ] { 3 } + Constant [ int SWOOLE_REDIS_TYPE_ZSET ] { 4 } + Constant [ int SWOOLE_REDIS_TYPE_HASH ] { 5 } + Constant [ int SWOOLE_REDIS_ERR_IO ] { 1 } + Constant [ int SWOOLE_REDIS_ERR_OTHER ] { 2 } + Constant [ int SWOOLE_REDIS_ERR_EOF ] { 3 } + Constant [ int SWOOLE_REDIS_ERR_PROTOCOL ] { 4 } + Constant [ int SWOOLE_REDIS_ERR_OOM ] { 5 } + Constant [ int SWOOLE_REDIS_ERR_CLOSED ] { 6 } + Constant [ int SWOOLE_REDIS_ERR_NOAUTH ] { 7 } + Constant [ int SWOOLE_REDIS_ERR_ALLOC ] { 8 } + Constant [ int SWOOLE_BASE ] { 1 } + Constant [ int SWOOLE_PROCESS ] { 2 } + Constant [ int SWOOLE_IPC_UNSOCK ] { 1 } + Constant [ int SWOOLE_IPC_MSGQUEUE ] { 2 } + Constant [ int SWOOLE_IPC_PREEMPTIVE ] { 3 } + Constant [ int SWOOLE_SERVER_COMMAND_MASTER ] { 2 } + Constant [ int SWOOLE_SERVER_COMMAND_MANAGER ] { 32 } + Constant [ int SWOOLE_SERVER_COMMAND_REACTOR_THREAD ] { 4 } + Constant [ int SWOOLE_SERVER_COMMAND_EVENT_WORKER ] { 8 } + Constant [ int SWOOLE_SERVER_COMMAND_WORKER ] { 8 } + Constant [ int SWOOLE_SERVER_COMMAND_TASK_WORKER ] { 16 } + Constant [ int SWOOLE_DISPATCH_ROUND ] { 1 } + Constant [ int SWOOLE_DISPATCH_FDMOD ] { 2 } + Constant [ int SWOOLE_DISPATCH_IDLE_WORKER ] { 3 } + Constant [ int SWOOLE_DISPATCH_IPMOD ] { 4 } + Constant [ int SWOOLE_DISPATCH_UIDMOD ] { 5 } + Constant [ int SWOOLE_DISPATCH_USERFUNC ] { 6 } + Constant [ int SWOOLE_DISPATCH_STREAM ] { 7 } + Constant [ int SWOOLE_DISPATCH_CO_CONN_LB ] { 8 } + Constant [ int SWOOLE_DISPATCH_CO_REQ_LB ] { 9 } + Constant [ int SWOOLE_DISPATCH_CONCURRENT_LB ] { 10 } + Constant [ int SWOOLE_DISPATCH_RESULT_DISCARD_PACKET ] { -1 } + Constant [ int SWOOLE_DISPATCH_RESULT_CLOSE_CONNECTION ] { -2 } + Constant [ int SWOOLE_DISPATCH_RESULT_USERFUNC_FALLBACK ] { -3 } + Constant [ int SWOOLE_TASK_TMPFILE ] { 1 } + Constant [ int SWOOLE_TASK_SERIALIZE ] { 2 } + Constant [ int SWOOLE_TASK_NONBLOCK ] { 4 } + Constant [ int SWOOLE_TASK_CALLBACK ] { 8 } + Constant [ int SWOOLE_TASK_WAITALL ] { 16 } + Constant [ int SWOOLE_TASK_COROUTINE ] { 32 } + Constant [ int SWOOLE_TASK_PEEK ] { 64 } + Constant [ int SWOOLE_TASK_NOREPLY ] { 128 } + Constant [ int SWOOLE_WORKER_BUSY ] { 1 } + Constant [ int SWOOLE_WORKER_IDLE ] { 2 } + Constant [ int SWOOLE_WORKER_EXIT ] { 3 } + Constant [ int SWOOLE_WEBSOCKET_STATUS_CONNECTION ] { 1 } + Constant [ int SWOOLE_WEBSOCKET_STATUS_HANDSHAKE ] { 2 } + Constant [ int SWOOLE_WEBSOCKET_STATUS_ACTIVE ] { 3 } + Constant [ int SWOOLE_WEBSOCKET_STATUS_CLOSING ] { 4 } + Constant [ int SWOOLE_WEBSOCKET_OPCODE_CONTINUATION ] { 0 } + Constant [ int SWOOLE_WEBSOCKET_OPCODE_TEXT ] { 1 } + Constant [ int SWOOLE_WEBSOCKET_OPCODE_BINARY ] { 2 } + Constant [ int SWOOLE_WEBSOCKET_OPCODE_CLOSE ] { 8 } + Constant [ int SWOOLE_WEBSOCKET_OPCODE_PING ] { 9 } + Constant [ int SWOOLE_WEBSOCKET_OPCODE_PONG ] { 10 } + Constant [ int SWOOLE_WEBSOCKET_FLAG_FIN ] { 1 } + Constant [ int SWOOLE_WEBSOCKET_FLAG_RSV1 ] { 4 } + Constant [ int SWOOLE_WEBSOCKET_FLAG_RSV2 ] { 8 } + Constant [ int SWOOLE_WEBSOCKET_FLAG_RSV3 ] { 16 } + Constant [ int SWOOLE_WEBSOCKET_FLAG_MASK ] { 32 } + Constant [ int SWOOLE_WEBSOCKET_FLAG_COMPRESS ] { 2 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_NORMAL ] { 1000 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_GOING_AWAY ] { 1001 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_PROTOCOL_ERROR ] { 1002 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_DATA_ERROR ] { 1003 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_STATUS_ERROR ] { 1005 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_ABNORMAL ] { 1006 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_MESSAGE_ERROR ] { 1007 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_POLICY_ERROR ] { 1008 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_MESSAGE_TOO_BIG ] { 1009 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_EXTENSION_MISSING ] { 1010 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_SERVER_ERROR ] { 1011 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_CLOSE_SERVICE_RESTART ] { 1012 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_TRY_AGAIN_LATER ] { 1013 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_BAD_GATEWAY ] { 1014 } + Constant [ int SWOOLE_WEBSOCKET_CLOSE_TLS ] { 1015 } + Constant [ int WEBSOCKET_STATUS_CONNECTION ] { 1 } + Constant [ int WEBSOCKET_STATUS_HANDSHAKE ] { 2 } + Constant [ int WEBSOCKET_STATUS_FRAME ] { 3 } + Constant [ int WEBSOCKET_STATUS_ACTIVE ] { 3 } + Constant [ int WEBSOCKET_STATUS_CLOSING ] { 4 } + Constant [ int WEBSOCKET_OPCODE_CONTINUATION ] { 0 } + Constant [ int WEBSOCKET_OPCODE_TEXT ] { 1 } + Constant [ int WEBSOCKET_OPCODE_BINARY ] { 2 } + Constant [ int WEBSOCKET_OPCODE_CLOSE ] { 8 } + Constant [ int WEBSOCKET_OPCODE_PING ] { 9 } + Constant [ int WEBSOCKET_OPCODE_PONG ] { 10 } + Constant [ int WEBSOCKET_CLOSE_NORMAL ] { 1000 } + Constant [ int WEBSOCKET_CLOSE_GOING_AWAY ] { 1001 } + Constant [ int WEBSOCKET_CLOSE_PROTOCOL_ERROR ] { 1002 } + Constant [ int WEBSOCKET_CLOSE_DATA_ERROR ] { 1003 } + Constant [ int WEBSOCKET_CLOSE_STATUS_ERROR ] { 1005 } + Constant [ int WEBSOCKET_CLOSE_ABNORMAL ] { 1006 } + Constant [ int WEBSOCKET_CLOSE_MESSAGE_ERROR ] { 1007 } + Constant [ int WEBSOCKET_CLOSE_POLICY_ERROR ] { 1008 } + Constant [ int WEBSOCKET_CLOSE_MESSAGE_TOO_BIG ] { 1009 } + Constant [ int WEBSOCKET_CLOSE_EXTENSION_MISSING ] { 1010 } + Constant [ int WEBSOCKET_CLOSE_SERVER_ERROR ] { 1011 } + Constant [ int WEBSOCKET_CLOSE_CLOSE_SERVICE_RESTART ] { 1012 } + Constant [ int WEBSOCKET_CLOSE_TRY_AGAIN_LATER ] { 1013 } + Constant [ int WEBSOCKET_CLOSE_BAD_GATEWAY ] { 1014 } + Constant [ int WEBSOCKET_CLOSE_TLS ] { 1015 } + Constant [ int SW_PGSQL_ASSOC ] { 1 } + Constant [ int SW_PGSQL_NUM ] { 2 } + Constant [ int SW_PGSQL_BOTH ] { 3 } + } + + - Functions { + Function [ function swoole_version ] { + + - Parameters [0] { + } + - Return [ string ] + } + Function [ function swoole_cpu_num ] { + + - Parameters [0] { + } + - Return [ int ] + } + Function [ function swoole_last_error ] { + + - Parameters [0] { + } + - Return [ int ] + } + Function [ function swoole_async_dns_lookup_coro ] { + + - Parameters [3] { + Parameter #0 [ string $domain_name ] + Parameter #1 [ float $timeout = 60 ] + Parameter #2 [ int $type = AF_INET ] + } + - Return [ string|false ] + } + Function [ function swoole_async_set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ void ] + } + Function [ function swoole_coroutine_create ] { + + - Parameters [2] { + Parameter #0 [ callable $func ] + Parameter #1 [ mixed ...$params ] + } + - Return [ int|false ] + } + Function [ function swoole_coroutine_defer ] { + + - Parameters [1] { + Parameter #0 [ callable $callback ] + } + - Return [ void ] + } + Function [ function swoole_coroutine_socketpair ] { + + - Parameters [3] { + Parameter #0 [ int $domain ] + Parameter #1 [ int $type ] + Parameter #2 [ int $protocol ] + } + - Return [ array|false ] + } + Function [ function swoole_test_kernel_coroutine ] { + + - Parameters [2] { + Parameter #0 [ int $count = 100 ] + Parameter #1 [ float $sleep_time = 1.0 ] + } + - Return [ void ] + } + Function [ function swoole_client_select ] { + + - Parameters [4] { + Parameter #0 [ array &$read_array ] + Parameter #1 [ array &$write_array ] + Parameter #2 [ array &$error_array ] + Parameter #3 [ float $timeout = 0.5 ] + } + - Return [ int|false ] + } + Function [ function swoole_select ] { + + - Parameters [4] { + Parameter #0 [ array &$read_array ] + Parameter #1 [ array &$write_array ] + Parameter #2 [ array &$error_array ] + Parameter #3 [ float $timeout = 0.5 ] + } + - Return [ int|false ] + } + Function [ function swoole_set_process_name ] { + + - Parameters [1] { + Parameter #0 [ string $process_name ] + } + - Return [ bool ] + } + Function [ function swoole_get_local_ip ] { + + - Parameters [0] { + } + - Return [ array ] + } + Function [ function swoole_get_local_mac ] { + + - Parameters [0] { + } + - Return [ array ] + } + Function [ function swoole_strerror ] { + + - Parameters [2] { + Parameter #0 [ int $errno ] + Parameter #1 [ int $error_type = SWOOLE_STRERROR_SYSTEM ] + } + - Return [ string ] + } + Function [ function swoole_errno ] { + + - Parameters [0] { + } + - Return [ int ] + } + Function [ function swoole_clear_error ] { + + - Parameters [0] { + } + - Return [ void ] + } + Function [ function swoole_error_log ] { + + - Parameters [2] { + Parameter #0 [ int $level ] + Parameter #1 [ string $msg ] + } + - Return [ void ] + } + Function [ function swoole_error_log_ex ] { + + - Parameters [3] { + Parameter #0 [ int $level ] + Parameter #1 [ int $error ] + Parameter #2 [ string $msg ] + } + - Return [ void ] + } + Function [ function swoole_ignore_error ] { + + - Parameters [1] { + Parameter #0 [ int $error ] + } + - Return [ void ] + } + Function [ function swoole_hashcode ] { + + - Parameters [2] { + Parameter #0 [ string $data ] + Parameter #1 [ int $type = 0 ] + } + - Return [ int|false ] + } + Function [ function swoole_mime_type_add ] { + + - Parameters [2] { + Parameter #0 [ string $suffix ] + Parameter #1 [ string $mime_type ] + } + - Return [ bool ] + } + Function [ function swoole_mime_type_set ] { + + - Parameters [2] { + Parameter #0 [ string $suffix ] + Parameter #1 [ string $mime_type ] + } + - Return [ void ] + } + Function [ function swoole_mime_type_delete ] { + + - Parameters [1] { + Parameter #0 [ string $suffix ] + } + - Return [ bool ] + } + Function [ function swoole_mime_type_get ] { + + - Parameters [1] { + Parameter #0 [ string $filename ] + } + - Return [ string ] + } + Function [ function swoole_get_mime_type ] { + + - Parameters [1] { + Parameter #0 [ string $filename ] + } + - Return [ string ] + } + Function [ function swoole_mime_type_exists ] { + + - Parameters [1] { + Parameter #0 [ string $filename ] + } + - Return [ bool ] + } + Function [ function swoole_mime_type_list ] { + + - Parameters [0] { + } + - Return [ array ] + } + Function [ function swoole_clear_dns_cache ] { + + - Parameters [0] { + } + - Return [ void ] + } + Function [ function swoole_substr_unserialize ] { + + - Parameters [4] { + Parameter #0 [ string $str ] + Parameter #1 [ int $offset ] + Parameter #2 [ int $length = 0 ] + Parameter #3 [ array $options = [] ] + } + - Return [ mixed ] + } + Function [ function swoole_substr_json_decode ] { + + - Parameters [6] { + Parameter #0 [ string $str ] + Parameter #1 [ int $offset ] + Parameter #2 [ int $length = 0 ] + Parameter #3 [ bool $associative = false ] + Parameter #4 [ int $depth = 512 ] + Parameter #5 [ int $flags = 0 ] + } + - Return [ mixed ] + } + Function [ function swoole_internal_call_user_shutdown_begin ] { + + - Parameters [0] { + } + - Return [ bool ] + } + Function [ function swoole_get_objects ] { + + - Parameters [0] { + } + - Return [ array|false ] + } + Function [ function swoole_get_vm_status ] { + + - Parameters [0] { + } + - Return [ array ] + } + Function [ function swoole_get_object_by_handle ] { + + - Parameters [1] { + Parameter #0 [ int $handle ] + } + - Return [ object|false ] + } + Function [ function swoole_name_resolver_lookup ] { + + - Parameters [2] { + Parameter #0 [ string $name ] + Parameter #1 [ Swoole\NameResolver\Context $ctx ] + } + - Return [ string ] + } + Function [ function swoole_name_resolver_add ] { + + - Parameters [1] { + Parameter #0 [ Swoole\NameResolver $ns ] + } + - Return [ bool ] + } + Function [ function swoole_name_resolver_remove ] { + + - Parameters [1] { + Parameter #0 [ Swoole\NameResolver $ns ] + } + - Return [ bool ] + } + Function [ function go ] { + + - Parameters [1] { + Parameter #0 [ callable $func ] + } + - Return [ int|false ] + } + Function [ function defer ] { + + - Parameters [1] { + Parameter #0 [ callable $callback ] + } + - Return [ void ] + } + Function [ function swoole_event_add ] { + + - Parameters [4] { + Parameter #0 [ mixed $fd ] + Parameter #1 [ ?callable $read_callback = null ] + Parameter #2 [ ?callable $write_callback = null ] + Parameter #3 [ int $events = SWOOLE_EVENT_READ ] + } + - Return [ int|false ] + } + Function [ function swoole_event_del ] { + + - Parameters [1] { + Parameter #0 [ mixed $fd ] + } + - Return [ bool ] + } + Function [ function swoole_event_set ] { + + - Parameters [4] { + Parameter #0 [ mixed $fd ] + Parameter #1 [ ?callable $read_callback = null ] + Parameter #2 [ ?callable $write_callback = null ] + Parameter #3 [ int $events = 0 ] + } + - Return [ bool ] + } + Function [ function swoole_event_wait ] { + + - Parameters [0] { + } + - Return [ void ] + } + Function [ function swoole_event_isset ] { + + - Parameters [2] { + Parameter #0 [ mixed $fd ] + Parameter #1 [ int $events = SWOOLE_EVENT_READ | SWOOLE_EVENT_WRITE ] + } + - Return [ bool ] + } + Function [ function swoole_event_dispatch ] { + + - Parameters [0] { + } + - Return [ bool ] + } + Function [ function swoole_event_defer ] { + + - Parameters [1] { + Parameter #0 [ callable $callback ] + } + - Return [ bool ] + } + Function [ function swoole_event_cycle ] { + + - Parameters [2] { + Parameter #0 [ ?callable $callback ] + Parameter #1 [ bool $before = false ] + } + - Return [ bool ] + } + Function [ function swoole_event_write ] { + + - Parameters [2] { + Parameter #0 [ mixed $fd ] + Parameter #1 [ string $data ] + } + - Return [ bool ] + } + Function [ function swoole_event_exit ] { + + - Parameters [0] { + } + - Return [ void ] + } + Function [ function swoole_timer_set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ void ] + } + Function [ function swoole_timer_after ] { + + - Parameters [2] { + Parameter #0 [ int $ms ] + Parameter #1 [ callable $callback ] + } + - Return [ int|false ] + } + Function [ function swoole_timer_tick ] { + + - Parameters [2] { + Parameter #0 [ int $ms ] + Parameter #1 [ callable $callback ] + } + - Return [ int|false ] + } + Function [ function swoole_timer_info ] { + + - Parameters [1] { + Parameter #0 [ int $timer_id ] + } + - Return [ ?array ] + } + Function [ function swoole_timer_list ] { + + - Parameters [0] { + } + - Return [ Swoole\Timer\Iterator ] + } + Function [ function swoole_timer_exists ] { + + - Parameters [1] { + Parameter #0 [ int $timer_id ] + } + - Return [ bool ] + } + Function [ function swoole_timer_stats ] { + + - Parameters [0] { + } + - Return [ array ] + } + Function [ function swoole_timer_clear ] { + + - Parameters [1] { + Parameter #0 [ int $timer_id ] + } + - Return [ bool ] + } + Function [ function swoole_timer_clear_all ] { + + - Parameters [0] { + } + - Return [ bool ] + } + Function [ function swoole_native_curl_close ] { + + - Parameters [1] { + Parameter #0 [ CurlHandle $handle ] + } + - Return [ void ] + } + Function [ function swoole_native_curl_copy_handle ] { + + - Parameters [1] { + Parameter #0 [ CurlHandle $handle ] + } + - Return [ CurlHandle|false ] + } + Function [ function swoole_native_curl_errno ] { + + - Parameters [1] { + Parameter #0 [ CurlHandle $handle ] + } + - Return [ int ] + } + Function [ function swoole_native_curl_error ] { + + - Parameters [1] { + Parameter #0 [ CurlHandle $handle ] + } + - Return [ string ] + } + Function [ function swoole_native_curl_exec ] { + + - Parameters [1] { + Parameter #0 [ CurlHandle $handle ] + } + - Return [ string|bool ] + } + Function [ function swoole_native_curl_getinfo ] { + + - Parameters [2] { + Parameter #0 [ CurlHandle $handle ] + Parameter #1 [ ?int $option = null ] + } + - Return [ mixed ] + } + Function [ function swoole_native_curl_init ] { + + - Parameters [1] { + Parameter #0 [ ?string $url = null ] + } + - Return [ CurlHandle|false ] + } + Function [ function swoole_native_curl_setopt ] { + + - Parameters [3] { + Parameter #0 [ CurlHandle $handle ] + Parameter #1 [ int $option ] + Parameter #2 [ mixed $value ] + } + - Return [ bool ] + } + Function [ function swoole_native_curl_setopt_array ] { + + - Parameters [2] { + Parameter #0 [ CurlHandle $handle ] + Parameter #1 [ array $options ] + } + - Return [ bool ] + } + Function [ function swoole_native_curl_reset ] { + + - Parameters [1] { + Parameter #0 [ CurlHandle $handle ] + } + - Return [ void ] + } + Function [ function swoole_native_curl_escape ] { + + - Parameters [2] { + Parameter #0 [ CurlHandle $handle ] + Parameter #1 [ string $string ] + } + - Return [ string|false ] + } + Function [ function swoole_native_curl_unescape ] { + + - Parameters [2] { + Parameter #0 [ CurlHandle $handle ] + Parameter #1 [ string $string ] + } + - Return [ string|false ] + } + Function [ function swoole_native_curl_pause ] { + + - Parameters [2] { + Parameter #0 [ CurlHandle $handle ] + Parameter #1 [ int $flags ] + } + - Return [ int ] + } + Function [ function swoole_native_curl_multi_add_handle ] { + + - Parameters [2] { + Parameter #0 [ CurlMultiHandle $multi_handle ] + Parameter #1 [ CurlHandle $handle ] + } + - Return [ int ] + } + Function [ function swoole_native_curl_multi_close ] { + + - Parameters [1] { + Parameter #0 [ CurlMultiHandle $multi_handle ] + } + - Return [ void ] + } + Function [ function swoole_native_curl_multi_errno ] { + + - Parameters [1] { + Parameter #0 [ CurlMultiHandle $multi_handle ] + } + - Return [ int ] + } + Function [ function swoole_native_curl_multi_exec ] { + + - Parameters [2] { + Parameter #0 [ CurlMultiHandle $multi_handle ] + Parameter #1 [ &$still_running ] + } + - Return [ int ] + } + Function [ function swoole_native_curl_multi_select ] { + + - Parameters [2] { + Parameter #0 [ CurlMultiHandle $multi_handle ] + Parameter #1 [ float $timeout = 1.0 ] + } + - Return [ int ] + } + Function [ function swoole_native_curl_multi_setopt ] { + + - Parameters [3] { + Parameter #0 [ CurlMultiHandle $multi_handle ] + Parameter #1 [ int $option ] + Parameter #2 [ mixed $value ] + } + - Return [ bool ] + } + Function [ function swoole_native_curl_multi_getcontent ] { + + - Parameters [1] { + Parameter #0 [ CurlHandle $handle ] + } + - Return [ ?string ] + } + Function [ function swoole_native_curl_multi_info_read ] { + + - Parameters [2] { + Parameter #0 [ CurlMultiHandle $multi_handle ] + Parameter #1 [ &$queued_messages = null ] + } + - Return [ array|false ] + } + Function [ function swoole_native_curl_multi_init ] { + + - Parameters [0] { + } + - Return [ CurlMultiHandle ] + } + Function [ function swoole_native_curl_multi_remove_handle ] { + + - Parameters [2] { + Parameter #0 [ CurlMultiHandle $multi_handle ] + Parameter #1 [ CurlHandle $handle ] + } + - Return [ int ] + } + } + + - Classes [55] { + Class [ class Swoole\Exception extends Exception implements Throwable, Stringable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected string $file = '' ] + Property [ protected int $line = 0 ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] + } + + Method [ final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] + } + } + } + + Class [ class Swoole\Error extends Error implements Throwable, Stringable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected string $file = '' ] + Property [ protected int $line ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] + } + + Method [ final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] + } + } + } + + Class [ class Swoole\Event ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [11] { + Method [ static public method add ] { + + - Parameters [4] { + Parameter #0 [ mixed $fd ] + Parameter #1 [ ?callable $read_callback = null ] + Parameter #2 [ ?callable $write_callback = null ] + Parameter #3 [ int $events = SWOOLE_EVENT_READ ] + } + - Return [ int|false ] + } + + Method [ static public method del ] { + + - Parameters [1] { + Parameter #0 [ mixed $fd ] + } + - Return [ bool ] + } + + Method [ static public method set ] { + + - Parameters [4] { + Parameter #0 [ mixed $fd ] + Parameter #1 [ ?callable $read_callback = null ] + Parameter #2 [ ?callable $write_callback = null ] + Parameter #3 [ int $events = 0 ] + } + - Return [ bool ] + } + + Method [ static public method isset ] { + + - Parameters [2] { + Parameter #0 [ mixed $fd ] + Parameter #1 [ int $events = SWOOLE_EVENT_READ | SWOOLE_EVENT_WRITE ] + } + - Return [ bool ] + } + + Method [ static public method dispatch ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ static public method defer ] { + + - Parameters [1] { + Parameter #0 [ callable $callback ] + } + - Return [ bool ] + } + + Method [ static public method cycle ] { + + - Parameters [2] { + Parameter #0 [ ?callable $callback ] + Parameter #1 [ bool $before = false ] + } + - Return [ bool ] + } + + Method [ static public method write ] { + + - Parameters [2] { + Parameter #0 [ mixed $fd ] + Parameter #1 [ string $data ] + } + - Return [ bool ] + } + + Method [ static public method wait ] { + + - Parameters [0] { + } + - Return [ void ] + } + + Method [ static public method rshutdown ] { + + - Parameters [0] { + } + - Return [ void ] + } + + Method [ static public method exit ] { + + - Parameters [0] { + } + - Return [ void ] + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ class Swoole\Atomic ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ int $value = 0 ] + } + } + + Method [ public method add ] { + + - Parameters [1] { + Parameter #0 [ int $add_value = 1 ] + } + - Return [ int ] + } + + Method [ public method sub ] { + + - Parameters [1] { + Parameter #0 [ int $sub_value = 1 ] + } + - Return [ int ] + } + + Method [ public method get ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ int $value ] + } + - Return [ void ] + } + + Method [ public method wait ] { + + - Parameters [1] { + Parameter #0 [ float $timeout = 1.0 ] + } + - Return [ bool ] + } + + Method [ public method wakeup ] { + + - Parameters [1] { + Parameter #0 [ int $count = 1 ] + } + - Return [ bool ] + } + + Method [ public method cmpset ] { + + - Parameters [2] { + Parameter #0 [ int $cmp_value ] + Parameter #1 [ int $new_value ] + } + - Return [ bool ] + } + } + } + + Class [ class Swoole\Atomic\Long ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ int $value = 0 ] + } + } + + Method [ public method add ] { + + - Parameters [1] { + Parameter #0 [ int $add_value = 1 ] + } + - Return [ int ] + } + + Method [ public method sub ] { + + - Parameters [1] { + Parameter #0 [ int $sub_value = 1 ] + } + - Return [ int ] + } + + Method [ public method get ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ int $value ] + } + - Return [ void ] + } + + Method [ public method cmpset ] { + + - Parameters [2] { + Parameter #0 [ int $cmp_value ] + Parameter #1 [ int $new_value ] + } + - Return [ bool ] + } + } + } + + Class [ class Swoole\Lock ] { + + - Constants [5] { + Constant [ public int FILELOCK ] { 2 } + Constant [ public int MUTEX ] { 3 } + Constant [ public int SEM ] { 4 } + Constant [ public int RWLOCK ] { 1 } + Constant [ public int SPINLOCK ] { 5 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ public $errCode = 0 ] + } + + - Methods [9] { + Method [ public method __construct ] { + + - Parameters [2] { + Parameter #0 [ int $type = SWOOLE_MUTEX ] + Parameter #1 [ string $filename = '' ] + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method lock ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method lockwait ] { + + - Parameters [1] { + Parameter #0 [ float $timeout = 1.0 ] + } + - Return [ bool ] + } + + Method [ public method trylock ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method lock_read ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method trylock_read ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method unlock ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method destroy ] { + + - Parameters [0] { + } + - Return [ void ] + } + } + } + + Class [ class Swoole\Process ] { + + - Constants [5] { + Constant [ public int IPC_NOWAIT ] { 256 } + Constant [ public int PIPE_MASTER ] { 1 } + Constant [ public int PIPE_WORKER ] { 2 } + Constant [ public int PIPE_READ ] { 3 } + Constant [ public int PIPE_WRITE ] { 4 } + } + + - Static properties [0] { + } + + - Static methods [6] { + Method [ static public method wait ] { + + - Parameters [1] { + Parameter #0 [ bool $blocking = true ] + } + - Return [ array|false ] + } + + Method [ static public method signal ] { + + - Parameters [2] { + Parameter #0 [ int $signal_no ] + Parameter #1 [ ?callable $callback = null ] + } + - Return [ bool ] + } + + Method [ static public method alarm ] { + + - Parameters [2] { + Parameter #0 [ int $usec ] + Parameter #1 [ int $type = 0 ] + } + - Return [ bool ] + } + + Method [ static public method kill ] { + + - Parameters [2] { + Parameter #0 [ int $pid ] + Parameter #1 [ int $signal_no = SIGTERM ] + } + - Return [ bool ] + } + + Method [ static public method daemon ] { + + - Parameters [3] { + Parameter #0 [ bool $nochdir = true ] + Parameter #1 [ bool $noclose = true ] + Parameter #2 [ array $pipes = [] ] + } + - Return [ bool ] + } + + Method [ static public method setAffinity ] { + + - Parameters [1] { + Parameter #0 [ array $cpu_settings ] + } + - Return [ bool ] + } + } + + - Properties [6] { + Property [ public $pipe = NULL ] + Property [ public $msgQueueId = NULL ] + Property [ public $msgQueueKey = NULL ] + Property [ public $pid = NULL ] + Property [ public $id = NULL ] + Property [ private $callback = NULL ] + } + + - Methods [20] { + Method [ public method __construct ] { + + - Parameters [4] { + Parameter #0 [ callable $callback ] + Parameter #1 [ bool $redirect_stdin_and_stdout = false ] + Parameter #2 [ int $pipe_type = SOCK_DGRAM ] + Parameter #3 [ bool $enable_coroutine = false ] + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method setPriority ] { + + - Parameters [3] { + Parameter #0 [ int $which ] + Parameter #1 [ int $priority ] + Parameter #2 [ ?int $who = null ] + } + - Return [ bool ] + } + + Method [ public method getPriority ] { + + - Parameters [2] { + Parameter #0 [ int $which ] + Parameter #1 [ ?int $who = null ] + } + - Return [ int|false ] + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ void ] + } + + Method [ public method setTimeout ] { + + - Parameters [1] { + Parameter #0 [ float $seconds ] + } + - Return [ bool ] + } + + Method [ public method setBlocking ] { + + - Parameters [1] { + Parameter #0 [ bool $blocking ] + } + - Return [ void ] + } + + Method [ public method useQueue ] { + + - Parameters [3] { + Parameter #0 [ int $key = 0 ] + Parameter #1 [ int $mode = 2 ] + Parameter #2 [ int $capacity = -1 ] + } + - Return [ bool ] + } + + Method [ public method statQueue ] { + + - Parameters [0] { + } + - Return [ array|false ] + } + + Method [ public method freeQueue ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method start ] { + + - Parameters [0] { + } + - Return [ int|bool ] + } + + Method [ public method write ] { + + - Parameters [1] { + Parameter #0 [ string $data ] + } + - Return [ int|false ] + } + + Method [ public method close ] { + + - Parameters [1] { + Parameter #0 [ int $which = 0 ] + } + - Return [ bool ] + } + + Method [ public method read ] { + + - Parameters [1] { + Parameter #0 [ int $size = 8192 ] + } + - Return [ string|false ] + } + + Method [ public method push ] { + + - Parameters [1] { + Parameter #0 [ string $data ] + } + - Return [ bool ] + } + + Method [ public method pop ] { + + - Parameters [1] { + Parameter #0 [ int $size = 65536 ] + } + - Return [ string|false ] + } + + Method [ public method exit ] { + + - Parameters [1] { + Parameter #0 [ int $exit_code = 0 ] + } + - Return [ void ] + } + + Method [ public method exec ] { + + - Parameters [2] { + Parameter #0 [ string $exec_file ] + Parameter #1 [ array $args ] + } + - Return [ bool ] + } + + Method [ public method exportSocket ] { + + - Parameters [0] { + } + - Return [ Swoole\Coroutine\Socket|false ] + } + + Method [ public method name ] { + + - Parameters [1] { + Parameter #0 [ string $process_name ] + } + - Return [ bool ] + } + } + } + + Class [ class Swoole\Process\Pool ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ public $master_pid = -1 ] + Property [ public $workers = NULL ] + } + + - Methods [12] { + Method [ public method __construct ] { + + - Parameters [4] { + Parameter #0 [ int $worker_num ] + Parameter #1 [ int $ipc_type = SWOOLE_IPC_NONE ] + Parameter #2 [ int $msgqueue_key = 0 ] + Parameter #3 [ bool $enable_coroutine = false ] + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ void ] + } + + Method [ public method on ] { + + - Parameters [2] { + Parameter #0 [ string $name ] + Parameter #1 [ callable $callback ] + } + - Return [ bool ] + } + + Method [ public method getProcess ] { + + - Parameters [1] { + Parameter #0 [ int $work_id = -1 ] + } + - Return [ Swoole\Process|false ] + } + + Method [ public method listen ] { + + - Parameters [3] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port = 0 ] + Parameter #2 [ int $backlog = 2048 ] + } + - Return [ bool ] + } + + Method [ public method write ] { + + - Parameters [1] { + Parameter #0 [ string $data ] + } + - Return [ bool ] + } + + Method [ public method sendMessage ] { + + - Parameters [2] { + Parameter #0 [ string $data ] + Parameter #1 [ int $dst_worker_id ] + } + - Return [ bool ] + } + + Method [ public method detach ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method start ] { + + - Parameters [0] { + } + - Return [ ?false ] + } + + Method [ public method stop ] { + + - Parameters [0] { + } + - Return [ void ] + } + + Method [ public method shutdown ] { + + - Parameters [0] { + } + - Return [ bool ] + } + } + } + + Class [ class Swoole\Table implements Iterator, Traversable, Countable ] { + + - Constants [3] { + Constant [ public int TYPE_INT ] { 1 } + Constant [ public int TYPE_STRING ] { 3 } + Constant [ public int TYPE_FLOAT ] { 2 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ public $size = NULL ] + Property [ public $memorySize = NULL ] + } + + - Methods [21] { + Method [ public method __construct ] { + + - Parameters [2] { + Parameter #0 [ int $table_size ] + Parameter #1 [ float $conflict_proportion = 0.2 ] + } + } + + Method [ public method column ] { + + - Parameters [3] { + Parameter #0 [ string $name ] + Parameter #1 [ int $type ] + Parameter #2 [ int $size = 0 ] + } + - Return [ bool ] + } + + Method [ public method create ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method destroy ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method set ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ array $value ] + } + - Return [ bool ] + } + + Method [ public method get ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ ?string $field = null ] + } + - Return [ array|string|int|float|false ] + } + + Method [ public method count ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method del ] { + + - Parameters [1] { + Parameter #0 [ string $key ] + } + - Return [ bool ] + } + + Method [ public method delete ] { + + - Parameters [1] { + Parameter #0 [ string $key ] + } + - Return [ bool ] + } + + Method [ public method exists ] { + + - Parameters [1] { + Parameter #0 [ string $key ] + } + - Return [ bool ] + } + + Method [ public method exist ] { + + - Parameters [1] { + Parameter #0 [ string $key ] + } + - Return [ bool ] + } + + Method [ public method incr ] { + + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ string $column ] + Parameter #2 [ int|float $incrby = 1 ] + } + - Return [ int|float ] + } + + Method [ public method decr ] { + + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ string $column ] + Parameter #2 [ int|float $incrby = 1 ] + } + - Return [ int|float ] + } + + Method [ public method getSize ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method getMemorySize ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method stats ] { + + - Parameters [0] { + } + - Return [ array|false ] + } + + Method [ public method rewind ] { + + - Parameters [0] { + } + - Return [ void ] + } + + Method [ public method valid ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method next ] { + + - Parameters [0] { + } + - Return [ void ] + } + + Method [ public method current ] { + + - Parameters [0] { + } + - Return [ mixed ] + } + + Method [ public method key ] { + + - Parameters [0] { + } + - Return [ mixed ] + } + } + } + + Class [ class Swoole\Timer ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [9] { + Method [ static public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ void ] + } + + Method [ static public method tick ] { + + - Parameters [3] { + Parameter #0 [ int $ms ] + Parameter #1 [ callable $callback ] + Parameter #2 [ mixed ...$params ] + } + - Return [ int|false ] + } + + Method [ static public method after ] { + + - Parameters [3] { + Parameter #0 [ int $ms ] + Parameter #1 [ callable $callback ] + Parameter #2 [ mixed ...$params ] + } + - Return [ int|false ] + } + + Method [ static public method exists ] { + + - Parameters [1] { + Parameter #0 [ int $timer_id ] + } + - Return [ bool ] + } + + Method [ static public method info ] { + + - Parameters [1] { + Parameter #0 [ int $timer_id ] + } + - Return [ ?array ] + } + + Method [ static public method stats ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ static public method list ] { + + - Parameters [0] { + } + - Return [ Swoole\Timer\Iterator ] + } + + Method [ static public method clear ] { + + - Parameters [1] { + Parameter #0 [ int $timer_id ] + } + - Return [ bool ] + } + + Method [ static public method clearAll ] { + + - Parameters [0] { + } + - Return [ bool ] + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ class Swoole\Timer\Iterator extends ArrayIterator implements Countable, Serializable, ArrayAccess, Iterator, Traversable, SeekableIterator ] { + + - Constants [2] { + Constant [ public int STD_PROP_LIST ] { 1 } + Constant [ public int ARRAY_AS_PROPS ] { 2 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [27] { + Method [ public method __construct ] { + + - Parameters [2] { + Parameter #0 [ object|array $array = [] ] + Parameter #1 [ int $flags = 0 ] + } + } + + Method [ public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ mixed $key ] + } + - Tentative return [ bool ] + } + + Method [ public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ mixed $key ] + } + - Tentative return [ mixed ] + } + + Method [ public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ mixed $key ] + Parameter #1 [ mixed $value ] + } + - Tentative return [ void ] + } + + Method [ public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ mixed $key ] + } + - Tentative return [ void ] + } + + Method [ public method append ] { + + - Parameters [1] { + Parameter #0 [ mixed $value ] + } + - Tentative return [ void ] + } + + Method [ public method getArrayCopy ] { + + - Parameters [0] { + } + - Tentative return [ array ] + } + + Method [ public method count ] { + + - Parameters [0] { + } + - Tentative return [ int ] + } + + Method [ public method getFlags ] { + + - Parameters [0] { + } + - Tentative return [ int ] + } + + Method [ public method setFlags ] { + + - Parameters [1] { + Parameter #0 [ int $flags ] + } + - Tentative return [ void ] + } + + Method [ public method asort ] { + + - Parameters [1] { + Parameter #0 [ int $flags = SORT_REGULAR ] + } + - Tentative return [ bool ] + } + + Method [ public method ksort ] { + + - Parameters [1] { + Parameter #0 [ int $flags = SORT_REGULAR ] + } + - Tentative return [ bool ] + } + + Method [ public method uasort ] { + + - Parameters [1] { + Parameter #0 [ callable $callback ] + } + - Tentative return [ bool ] + } + + Method [ public method uksort ] { + + - Parameters [1] { + Parameter #0 [ callable $callback ] + } + - Tentative return [ bool ] + } + + Method [ public method natsort ] { + + - Parameters [0] { + } + - Tentative return [ bool ] + } + + Method [ public method natcasesort ] { + + - Parameters [0] { + } + - Tentative return [ bool ] + } + + Method [ public method unserialize ] { + + - Parameters [1] { + Parameter #0 [ string $data ] + } + - Tentative return [ void ] + } + + Method [ public method serialize ] { + + - Parameters [0] { + } + - Tentative return [ string ] + } + + Method [ public method __serialize ] { + + - Parameters [0] { + } + - Tentative return [ array ] + } + + Method [ public method __unserialize ] { + + - Parameters [1] { + Parameter #0 [ array $data ] + } + - Tentative return [ void ] + } + + Method [ public method rewind ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ public method current ] { + + - Parameters [0] { + } + - Tentative return [ mixed ] + } + + Method [ public method key ] { + + - Parameters [0] { + } + - Tentative return [ string|int|null ] + } + + Method [ public method next ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ public method valid ] { + + - Parameters [0] { + } + - Tentative return [ bool ] + } + + Method [ public method seek ] { + + - Parameters [1] { + Parameter #0 [ int $offset ] + } + - Tentative return [ void ] + } + + Method [ public method __debugInfo ] { + + - Parameters [0] { + } + - Tentative return [ array ] + } + } + } + + Class [ class Swoole\Coroutine ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [40] { + Method [ static public method create ] { + + - Parameters [2] { + Parameter #0 [ callable $func ] + Parameter #1 [ mixed ...$param ] + } + - Return [ int|false ] + } + + Method [ static public method defer ] { + + - Parameters [1] { + Parameter #0 [ callable $callback ] + } + - Return [ void ] + } + + Method [ static public method set ] { + + - Parameters [1] { + Parameter #0 [ array $options ] + } + - Return [ void ] + } + + Method [ static public method getOptions ] { + + - Parameters [0] { + } + - Return [ ?array ] + } + + Method [ static public method exists ] { + + - Parameters [1] { + Parameter #0 [ int $cid ] + } + - Return [ bool ] + } + + Method [ static public method yield ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ static public method cancel ] { + + - Parameters [1] { + Parameter #0 [ int $cid ] + } + - Return [ bool ] + } + + Method [ static public method join ] { + + - Parameters [2] { + Parameter #0 [ array $cid_array ] + Parameter #1 [ float $timeout = -1 ] + } + - Return [ bool ] + } + + Method [ static public method isCanceled ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ static public method suspend ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ static public method resume ] { + + - Parameters [1] { + Parameter #0 [ int $cid ] + } + - Return [ bool ] + } + + Method [ static public method stats ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ static public method getCid ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ static public method getuid ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ static public method getPcid ] { + + - Parameters [1] { + Parameter #0 [ int $cid = 0 ] + } + - Return [ int|false ] + } + + Method [ static public method getContext ] { + + - Parameters [1] { + Parameter #0 [ int $cid = 0 ] + } + - Return [ ?Swoole\Coroutine\Context ] + } + + Method [ static public method getBackTrace ] { + + - Parameters [3] { + Parameter #0 [ int $cid = 0 ] + Parameter #1 [ int $options = DEBUG_BACKTRACE_PROVIDE_OBJECT ] + Parameter #2 [ int $limit = 0 ] + } + - Return [ array|false ] + } + + Method [ static public method printBackTrace ] { + + - Parameters [3] { + Parameter #0 [ int $cid = 0 ] + Parameter #1 [ int $options = 0 ] + Parameter #2 [ int $limit = 0 ] + } + - Return [ void ] + } + + Method [ static public method getElapsed ] { + + - Parameters [1] { + Parameter #0 [ int $cid = 0 ] + } + - Return [ int ] + } + + Method [ static public method getStackUsage ] { + + - Parameters [1] { + Parameter #0 [ int $cid = 0 ] + } + - Return [ int|false ] + } + + Method [ static public method list ] { + + - Parameters [0] { + } + - Return [ Swoole\Coroutine\Iterator ] + } + + Method [ static public method listCoroutines ] { + + - Parameters [0] { + } + - Return [ Swoole\Coroutine\Iterator ] + } + + Method [ static public method enableScheduler ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ static public method disableScheduler ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ static public method getExecuteTime ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ static public method gethostbyname ] { + + - Parameters [3] { + Parameter #0 [ string $domain_name ] + Parameter #1 [ int $type = AF_INET ] + Parameter #2 [ float $timeout = -1 ] + } + - Return [ string|false ] + } + + Method [ static public method dnsLookup ] { + + - Parameters [3] { + Parameter #0 [ string $domain_name ] + Parameter #1 [ float $timeout = 60 ] + Parameter #2 [ int $type = AF_INET ] + } + - Return [ string|false ] + } + + Method [ static public method exec ] { + + - Parameters [2] { + Parameter #0 [ string $command ] + Parameter #1 [ bool $get_error_stream = false ] + } + - Return [ array|false ] + } + + Method [ static public method sleep ] { + + - Parameters [1] { + Parameter #0 [ float $seconds ] + } + - Return [ bool ] + } + + Method [ static public method getaddrinfo ] { + + - Parameters [6] { + Parameter #0 [ string $domain ] + Parameter #1 [ int $family = AF_INET ] + Parameter #2 [ int $socktype = SOCK_STREAM ] + Parameter #3 [ int $protocol = STREAM_IPPROTO_TCP ] + Parameter #4 [ ?string $service = null ] + Parameter #5 [ float $timeout = -1 ] + } + - Return [ array|bool ] + } + + Method [ static public method statvfs ] { + + - Parameters [1] { + Parameter #0 [ string $path ] + } + - Return [ array ] + } + + Method [ static public method readFile ] { + + - Parameters [2] { + Parameter #0 [ string $filename ] + Parameter #1 [ int $flag = 0 ] + } + - Return [ string|false ] + } + + Method [ static public method writeFile ] { + + - Parameters [3] { + Parameter #0 [ string $filename ] + Parameter #1 [ string $fileContent ] + Parameter #2 [ int $flags = 0 ] + } + - Return [ int|false ] + } + + Method [ static public method wait ] { + + - Parameters [1] { + Parameter #0 [ float $timeout = -1 ] + } + - Return [ array|false ] + } + + Method [ static public method waitPid ] { + + - Parameters [2] { + Parameter #0 [ int $pid ] + Parameter #1 [ float $timeout = -1 ] + } + - Return [ array|false ] + } + + Method [ static public method waitSignal ] { + + - Parameters [2] { + Parameter #0 [ int $signo ] + Parameter #1 [ float $timeout = -1 ] + } + - Return [ bool ] + } + + Method [ static public method waitEvent ] { + + - Parameters [3] { + Parameter #0 [ mixed $socket ] + Parameter #1 [ int $events = SWOOLE_EVENT_READ ] + Parameter #2 [ float $timeout = -1 ] + } + - Return [ int|false ] + } + + Method [ static public method fread ] { + + - Parameters [2] { + Parameter #0 [ $handle ] + Parameter #1 [ int $length = 0 ] + } + - Return [ string|false ] + } + + Method [ static public method fgets ] { + + - Parameters [1] { + Parameter #0 [ $handle ] + } + - Return [ string|false ] + } + + Method [ static public method fwrite ] { + + - Parameters [3] { + Parameter #0 [ $handle ] + Parameter #1 [ string $data ] + Parameter #2 [ int $length = 0 ] + } + - Return [ int|false ] + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ class Swoole\Coroutine\Iterator extends ArrayIterator implements Countable, Serializable, ArrayAccess, Iterator, Traversable, SeekableIterator ] { + + - Constants [2] { + Constant [ public int STD_PROP_LIST ] { 1 } + Constant [ public int ARRAY_AS_PROPS ] { 2 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [27] { + Method [ public method __construct ] { + + - Parameters [2] { + Parameter #0 [ object|array $array = [] ] + Parameter #1 [ int $flags = 0 ] + } + } + + Method [ public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ mixed $key ] + } + - Tentative return [ bool ] + } + + Method [ public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ mixed $key ] + } + - Tentative return [ mixed ] + } + + Method [ public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ mixed $key ] + Parameter #1 [ mixed $value ] + } + - Tentative return [ void ] + } + + Method [ public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ mixed $key ] + } + - Tentative return [ void ] + } + + Method [ public method append ] { + + - Parameters [1] { + Parameter #0 [ mixed $value ] + } + - Tentative return [ void ] + } + + Method [ public method getArrayCopy ] { + + - Parameters [0] { + } + - Tentative return [ array ] + } + + Method [ public method count ] { + + - Parameters [0] { + } + - Tentative return [ int ] + } + + Method [ public method getFlags ] { + + - Parameters [0] { + } + - Tentative return [ int ] + } + + Method [ public method setFlags ] { + + - Parameters [1] { + Parameter #0 [ int $flags ] + } + - Tentative return [ void ] + } + + Method [ public method asort ] { + + - Parameters [1] { + Parameter #0 [ int $flags = SORT_REGULAR ] + } + - Tentative return [ bool ] + } + + Method [ public method ksort ] { + + - Parameters [1] { + Parameter #0 [ int $flags = SORT_REGULAR ] + } + - Tentative return [ bool ] + } + + Method [ public method uasort ] { + + - Parameters [1] { + Parameter #0 [ callable $callback ] + } + - Tentative return [ bool ] + } + + Method [ public method uksort ] { + + - Parameters [1] { + Parameter #0 [ callable $callback ] + } + - Tentative return [ bool ] + } + + Method [ public method natsort ] { + + - Parameters [0] { + } + - Tentative return [ bool ] + } + + Method [ public method natcasesort ] { + + - Parameters [0] { + } + - Tentative return [ bool ] + } + + Method [ public method unserialize ] { + + - Parameters [1] { + Parameter #0 [ string $data ] + } + - Tentative return [ void ] + } + + Method [ public method serialize ] { + + - Parameters [0] { + } + - Tentative return [ string ] + } + + Method [ public method __serialize ] { + + - Parameters [0] { + } + - Tentative return [ array ] + } + + Method [ public method __unserialize ] { + + - Parameters [1] { + Parameter #0 [ array $data ] + } + - Tentative return [ void ] + } + + Method [ public method rewind ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ public method current ] { + + - Parameters [0] { + } + - Tentative return [ mixed ] + } + + Method [ public method key ] { + + - Parameters [0] { + } + - Tentative return [ string|int|null ] + } + + Method [ public method next ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ public method valid ] { + + - Parameters [0] { + } + - Tentative return [ bool ] + } + + Method [ public method seek ] { + + - Parameters [1] { + Parameter #0 [ int $offset ] + } + - Tentative return [ void ] + } + + Method [ public method __debugInfo ] { + + - Parameters [0] { + } + - Tentative return [ array ] + } + } + } + + Class [ class Swoole\Coroutine\Context extends ArrayObject implements Countable, Serializable, ArrayAccess, Traversable, IteratorAggregate ] { + + - Constants [2] { + Constant [ public int STD_PROP_LIST ] { 1 } + Constant [ public int ARRAY_AS_PROPS ] { 2 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [25] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ object|array $array = [] ] + Parameter #1 [ int $flags = 0 ] + Parameter #2 [ string $iteratorClass = ArrayIterator::class ] + } + } + + Method [ public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ mixed $key ] + } + - Tentative return [ bool ] + } + + Method [ public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ mixed $key ] + } + - Tentative return [ mixed ] + } + + Method [ public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ mixed $key ] + Parameter #1 [ mixed $value ] + } + - Tentative return [ void ] + } + + Method [ public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ mixed $key ] + } + - Tentative return [ void ] + } + + Method [ public method append ] { + + - Parameters [1] { + Parameter #0 [ mixed $value ] + } + - Tentative return [ void ] + } + + Method [ public method getArrayCopy ] { + + - Parameters [0] { + } + - Tentative return [ array ] + } + + Method [ public method count ] { + + - Parameters [0] { + } + - Tentative return [ int ] + } + + Method [ public method getFlags ] { + + - Parameters [0] { + } + - Tentative return [ int ] + } + + Method [ public method setFlags ] { + + - Parameters [1] { + Parameter #0 [ int $flags ] + } + - Tentative return [ void ] + } + + Method [ public method asort ] { + + - Parameters [1] { + Parameter #0 [ int $flags = SORT_REGULAR ] + } + - Tentative return [ bool ] + } + + Method [ public method ksort ] { + + - Parameters [1] { + Parameter #0 [ int $flags = SORT_REGULAR ] + } + - Tentative return [ bool ] + } + + Method [ public method uasort ] { + + - Parameters [1] { + Parameter #0 [ callable $callback ] + } + - Tentative return [ bool ] + } + + Method [ public method uksort ] { + + - Parameters [1] { + Parameter #0 [ callable $callback ] + } + - Tentative return [ bool ] + } + + Method [ public method natsort ] { + + - Parameters [0] { + } + - Tentative return [ bool ] + } + + Method [ public method natcasesort ] { + + - Parameters [0] { + } + - Tentative return [ bool ] + } + + Method [ public method unserialize ] { + + - Parameters [1] { + Parameter #0 [ string $data ] + } + - Tentative return [ void ] + } + + Method [ public method serialize ] { + + - Parameters [0] { + } + - Tentative return [ string ] + } + + Method [ public method __serialize ] { + + - Parameters [0] { + } + - Tentative return [ array ] + } + + Method [ public method __unserialize ] { + + - Parameters [1] { + Parameter #0 [ array $data ] + } + - Tentative return [ void ] + } + + Method [ public method getIterator ] { + + - Parameters [0] { + } + - Tentative return [ Iterator ] + } + + Method [ public method exchangeArray ] { + + - Parameters [1] { + Parameter #0 [ object|array $array ] + } + - Tentative return [ array ] + } + + Method [ public method setIteratorClass ] { + + - Parameters [1] { + Parameter #0 [ string $iteratorClass ] + } + - Tentative return [ void ] + } + + Method [ public method getIteratorClass ] { + + - Parameters [0] { + } + - Tentative return [ string ] + } + + Method [ public method __debugInfo ] { + + - Parameters [0] { + } + - Tentative return [ array ] + } + } + } + + Class [ class Swoole\ExitException extends Swoole\Exception implements Stringable, Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [6] { + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected string $file = '' ] + Property [ protected int $line = 0 ] + Property [ private $flags = 0 ] + Property [ private $status = 0 ] + } + + - Methods [12] { + Method [ public method getFlags ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method getStatus ] { + + - Parameters [0] { + } + - Return [ mixed ] + } + + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] + } + + Method [ final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] + } + } + } + + Class [ class Swoole\Coroutine\System ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [15] { + Method [ static public method gethostbyname ] { + + - Parameters [3] { + Parameter #0 [ string $domain_name ] + Parameter #1 [ int $type = AF_INET ] + Parameter #2 [ float $timeout = -1 ] + } + - Return [ string|false ] + } + + Method [ static public method dnsLookup ] { + + - Parameters [3] { + Parameter #0 [ string $domain_name ] + Parameter #1 [ float $timeout = 60 ] + Parameter #2 [ int $type = AF_INET ] + } + - Return [ string|false ] + } + + Method [ static public method exec ] { + + - Parameters [2] { + Parameter #0 [ string $command ] + Parameter #1 [ bool $get_error_stream = false ] + } + - Return [ array|false ] + } + + Method [ static public method sleep ] { + + - Parameters [1] { + Parameter #0 [ float $seconds ] + } + - Return [ bool ] + } + + Method [ static public method getaddrinfo ] { + + - Parameters [6] { + Parameter #0 [ string $domain ] + Parameter #1 [ int $family = AF_INET ] + Parameter #2 [ int $socktype = SOCK_STREAM ] + Parameter #3 [ int $protocol = STREAM_IPPROTO_TCP ] + Parameter #4 [ ?string $service = null ] + Parameter #5 [ float $timeout = -1 ] + } + - Return [ array|bool ] + } + + Method [ static public method statvfs ] { + + - Parameters [1] { + Parameter #0 [ string $path ] + } + - Return [ array ] + } + + Method [ static public method readFile ] { + + - Parameters [2] { + Parameter #0 [ string $filename ] + Parameter #1 [ int $flag = 0 ] + } + - Return [ string|false ] + } + + Method [ static public method writeFile ] { + + - Parameters [3] { + Parameter #0 [ string $filename ] + Parameter #1 [ string $fileContent ] + Parameter #2 [ int $flags = 0 ] + } + - Return [ int|false ] + } + + Method [ static public method wait ] { + + - Parameters [1] { + Parameter #0 [ float $timeout = -1 ] + } + - Return [ array|false ] + } + + Method [ static public method waitPid ] { + + - Parameters [2] { + Parameter #0 [ int $pid ] + Parameter #1 [ float $timeout = -1 ] + } + - Return [ array|false ] + } + + Method [ static public method waitSignal ] { + + - Parameters [2] { + Parameter #0 [ int $signo ] + Parameter #1 [ float $timeout = -1 ] + } + - Return [ bool ] + } + + Method [ static public method waitEvent ] { + + - Parameters [3] { + Parameter #0 [ mixed $socket ] + Parameter #1 [ int $events = SWOOLE_EVENT_READ ] + Parameter #2 [ float $timeout = -1 ] + } + - Return [ int|false ] + } + + Method [ static public method fread ] { + + - Parameters [2] { + Parameter #0 [ $handle ] + Parameter #1 [ int $length = 0 ] + } + - Return [ string|false ] + } + + Method [ static public method fwrite ] { + + - Parameters [3] { + Parameter #0 [ $handle ] + Parameter #1 [ string $data ] + Parameter #2 [ int $length = 0 ] + } + - Return [ int|false ] + } + + Method [ static public method fgets ] { + + - Parameters [1] { + Parameter #0 [ $handle ] + } + - Return [ string|false ] + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ final class Swoole\Coroutine\Scheduler ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [5] { + Method [ public method add ] { + + - Parameters [2] { + Parameter #0 [ callable $func ] + Parameter #1 [ mixed ...$param ] + } + - Return [ void ] + } + + Method [ public method parallel ] { + + - Parameters [3] { + Parameter #0 [ int $n ] + Parameter #1 [ callable $func ] + Parameter #2 [ mixed ...$param ] + } + - Return [ void ] + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ void ] + } + + Method [ public method getOptions ] { + + - Parameters [0] { + } + - Return [ ?array ] + } + + Method [ public method start ] { + + - Parameters [0] { + } + - Return [ bool ] + } + } + } + + Class [ class Swoole\Coroutine\Channel ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ public $capacity = 0 ] + Property [ public $errCode = 0 ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ int $size = 1 ] + } + } + + Method [ public method push ] { + + - Parameters [2] { + Parameter #0 [ mixed $data ] + Parameter #1 [ float $timeout = -1 ] + } + - Return [ bool ] + } + + Method [ public method pop ] { + + - Parameters [1] { + Parameter #0 [ float $timeout = -1 ] + } + - Return [ mixed ] + } + + Method [ public method isEmpty ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method isFull ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method close ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method stats ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method length ] { + + - Parameters [0] { + } + - Return [ int ] + } + } + } + + Class [ class Swoole\Runtime ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [3] { + Method [ static public method enableCoroutine ] { + + - Parameters [2] { + Parameter #0 [ int|bool $enable = SWOOLE_HOOK_ALL ] + Parameter #1 [ int $flags = SWOOLE_HOOK_ALL ] + } + - Return [ bool ] + } + + Method [ static public method getHookFlags ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ static public method setHookFlags ] { + + - Parameters [1] { + Parameter #0 [ int $flags ] + } + - Return [ bool ] + } + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ class Swoole\Coroutine\Curl\Exception extends Swoole\Exception implements Stringable, Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected string $file = '' ] + Property [ protected int $line = 0 ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] + } + + Method [ final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] + } + } + } + + Class [ class Swoole\Coroutine\Socket ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method import ] { + + - Parameters [1] { + Parameter #0 [ $stream ] + } + - Return [ Swoole\Coroutine\Socket|false ] + } + } + + - Properties [8] { + Property [ public $fd = -1 ] + Property [ public $domain = 0 ] + Property [ public $type = 0 ] + Property [ public $protocol = 0 ] + Property [ public $errCode = 0 ] + Property [ public $errMsg = '' ] + Property [ public $__ext_sockets_nonblock = false ] + Property [ public $__ext_sockets_timeout = 0 ] + } + + - Methods [32] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ int $domain ] + Parameter #1 [ int $type ] + Parameter #2 [ int $protocol = IPPROTO_IP ] + } + } + + Method [ public method bind ] { + + - Parameters [2] { + Parameter #0 [ string $address ] + Parameter #1 [ int $port = 0 ] + } + - Return [ bool ] + } + + Method [ public method listen ] { + + - Parameters [1] { + Parameter #0 [ int $backlog = 512 ] + } + - Return [ bool ] + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ float $timeout = 0 ] + } + - Return [ Swoole\Coroutine\Socket|false ] + } + + Method [ public method connect ] { + + - Parameters [3] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port = 0 ] + Parameter #2 [ float $timeout = 0 ] + } + - Return [ bool ] + } + + Method [ public method checkLiveness ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method getBoundCid ] { + + - Parameters [1] { + Parameter #0 [ int $event ] + } + - Return [ int ] + } + + Method [ public method peek ] { + + - Parameters [1] { + Parameter #0 [ int $length = 65536 ] + } + - Return [ string|false ] + } + + Method [ public method recv ] { + + - Parameters [2] { + Parameter #0 [ int $length = 65536 ] + Parameter #1 [ float $timeout = 0 ] + } + - Return [ string|false ] + } + + Method [ public method recvAll ] { + + - Parameters [2] { + Parameter #0 [ int $length = 65536 ] + Parameter #1 [ float $timeout = 0 ] + } + - Return [ string|false ] + } + + Method [ public method recvLine ] { + + - Parameters [2] { + Parameter #0 [ int $length = 65536 ] + Parameter #1 [ float $timeout = 0 ] + } + - Return [ string|false ] + } + + Method [ public method recvWithBuffer ] { + + - Parameters [2] { + Parameter #0 [ int $length = 65536 ] + Parameter #1 [ float $timeout = 0 ] + } + - Return [ string|false ] + } + + Method [ public method recvPacket ] { + + - Parameters [1] { + Parameter #0 [ float $timeout = 0 ] + } + - Return [ string|false ] + } + + Method [ public method send ] { + + - Parameters [2] { + Parameter #0 [ string $data ] + Parameter #1 [ float $timeout = 0 ] + } + - Return [ int|false ] + } + + Method [ public method readVector ] { + + - Parameters [2] { + Parameter #0 [ array $io_vector ] + Parameter #1 [ float $timeout = 0 ] + } + - Return [ array|false ] + } + + Method [ public method readVectorAll ] { + + - Parameters [2] { + Parameter #0 [ array $io_vector ] + Parameter #1 [ float $timeout = 0 ] + } + - Return [ array|false ] + } + + Method [ public method writeVector ] { + + - Parameters [2] { + Parameter #0 [ array $io_vector ] + Parameter #1 [ float $timeout = 0 ] + } + - Return [ int|false ] + } + + Method [ public method writeVectorAll ] { + + - Parameters [2] { + Parameter #0 [ array $io_vector ] + Parameter #1 [ float $timeout = 0 ] + } + - Return [ int|false ] + } + + Method [ public method sendFile ] { + + - Parameters [3] { + Parameter #0 [ string $file ] + Parameter #1 [ int $offset = 0 ] + Parameter #2 [ int $length = 0 ] + } + - Return [ bool ] + } + + Method [ public method sendAll ] { + + - Parameters [2] { + Parameter #0 [ string $data ] + Parameter #1 [ float $timeout = 0 ] + } + - Return [ int|false ] + } + + Method [ public method recvfrom ] { + + - Parameters [2] { + Parameter #0 [ mixed &$peername ] + Parameter #1 [ float $timeout = 0 ] + } + - Return [ string|false ] + } + + Method [ public method sendto ] { + + - Parameters [3] { + Parameter #0 [ string $addr ] + Parameter #1 [ int $port ] + Parameter #2 [ string $data ] + } + - Return [ int|false ] + } + + Method [ public method getOption ] { + + - Parameters [2] { + Parameter #0 [ int $level ] + Parameter #1 [ int $opt_name ] + } + - Return [ mixed ] + } + + Method [ public method setProtocol ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ bool ] + } + + Method [ public method setOption ] { + + - Parameters [3] { + Parameter #0 [ int $level ] + Parameter #1 [ int $opt_name ] + Parameter #2 [ mixed $opt_value ] + } + - Return [ bool ] + } + + Method [ public method sslHandshake ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method shutdown ] { + + - Parameters [1] { + Parameter #0 [ int $how = 2 ] + } + - Return [ bool ] + } + + Method [ public method cancel ] { + + - Parameters [1] { + Parameter #0 [ int $event = SWOOLE_EVENT_READ ] + } + - Return [ bool ] + } + + Method [ public method close ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method getpeername ] { + + - Parameters [0] { + } + - Return [ array|false ] + } + + Method [ public method getsockname ] { + + - Parameters [0] { + } + - Return [ array|false ] + } + + Method [ public method isClosed ] { + + - Parameters [0] { + } + - Return [ bool ] + } + } + } + + Class [ class Swoole\Coroutine\Socket\Exception extends Swoole\Exception implements Stringable, Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected string $file = '' ] + Property [ protected int $line = 0 ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] + } + + Method [ final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] + } + } + } + + Class [ class Swoole\Client ] { + + - Constants [7] { + Constant [ public int MSG_OOB ] { 1 } + Constant [ public int MSG_PEEK ] { 2 } + Constant [ public int MSG_DONTWAIT ] { 64 } + Constant [ public int MSG_WAITALL ] { 256 } + Constant [ public int SHUT_RDWR ] { 2 } + Constant [ public int SHUT_RD ] { 0 } + Constant [ public int SHUT_WR ] { 1 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [7] { + Property [ public $errCode = 0 ] + Property [ public $sock = -1 ] + Property [ public $reuse = false ] + Property [ public $reuseCount = 0 ] + Property [ public $type = 0 ] + Property [ public $id = NULL ] + Property [ public $setting = NULL ] + } + + - Methods [17] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ int $type ] + Parameter #1 [ bool $async = SWOOLE_SOCK_SYNC ] + Parameter #2 [ string $id = '' ] + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ bool ] + } + + Method [ public method connect ] { + + - Parameters [4] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port = 0 ] + Parameter #2 [ float $timeout = 0.5 ] + Parameter #3 [ int $sock_flag = 0 ] + } + - Return [ bool ] + } + + Method [ public method recv ] { + + - Parameters [2] { + Parameter #0 [ int $size = 65536 ] + Parameter #1 [ int $flag = 0 ] + } + - Return [ string|false ] + } + + Method [ public method send ] { + + - Parameters [2] { + Parameter #0 [ string $data ] + Parameter #1 [ int $flag = 0 ] + } + - Return [ int|false ] + } + + Method [ public method sendfile ] { + + - Parameters [3] { + Parameter #0 [ string $filename ] + Parameter #1 [ int $offset = 0 ] + Parameter #2 [ int $length = 0 ] + } + - Return [ bool ] + } + + Method [ public method sendto ] { + + - Parameters [3] { + Parameter #0 [ string $ip ] + Parameter #1 [ int $port ] + Parameter #2 [ string $data ] + } + - Return [ bool ] + } + + Method [ public method shutdown ] { + + - Parameters [1] { + Parameter #0 [ int $how ] + } + - Return [ bool ] + } + + Method [ public method enableSSL ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method getPeerCert ] { + + - Parameters [0] { + } + - Return [ string|bool ] + } + + Method [ public method verifyPeerCert ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method isConnected ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method getsockname ] { + + - Parameters [0] { + } + - Return [ array|false ] + } + + Method [ public method getpeername ] { + + - Parameters [0] { + } + - Return [ array|false ] + } + + Method [ public method close ] { + + - Parameters [1] { + Parameter #0 [ bool $force = false ] + } + - Return [ bool ] + } + + Method [ public method getSocket ] { + + - Parameters [0] { + } + - Return [ Socket|false ] + } + } + } + + Class [ class Swoole\Client\Exception extends Swoole\Exception implements Stringable, Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected string $file = '' ] + Property [ protected int $line = 0 ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] + } + + Method [ final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] + } + } + } + + Class [ class Swoole\Coroutine\Client ] { + + - Constants [4] { + Constant [ public int MSG_OOB ] { 1 } + Constant [ public int MSG_PEEK ] { 2 } + Constant [ public int MSG_DONTWAIT ] { 64 } + Constant [ public int MSG_WAITALL ] { 256 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [7] { + Property [ public $errCode = 0 ] + Property [ public $errMsg = '' ] + Property [ public $fd = -1 ] + Property [ public $socket = NULL ] + Property [ public $type = 1 ] + Property [ public $setting = NULL ] + Property [ public $connected = false ] + } + + - Methods [18] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ int $type ] + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ bool ] + } + + Method [ public method connect ] { + + - Parameters [4] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port = 0 ] + Parameter #2 [ float $timeout = 0 ] + Parameter #3 [ int $sock_flag = 0 ] + } + - Return [ bool ] + } + + Method [ public method recv ] { + + - Parameters [1] { + Parameter #0 [ float $timeout = 0 ] + } + - Return [ string|false ] + } + + Method [ public method peek ] { + + - Parameters [1] { + Parameter #0 [ int $length = 65535 ] + } + - Return [ string|false ] + } + + Method [ public method send ] { + + - Parameters [2] { + Parameter #0 [ string $data ] + Parameter #1 [ float $timeout = 0 ] + } + - Return [ int|false ] + } + + Method [ public method sendfile ] { + + - Parameters [3] { + Parameter #0 [ string $filename ] + Parameter #1 [ int $offset = 0 ] + Parameter #2 [ int $length = 0 ] + } + - Return [ bool ] + } + + Method [ public method sendto ] { + + - Parameters [3] { + Parameter #0 [ string $address ] + Parameter #1 [ int $port ] + Parameter #2 [ string $data ] + } + - Return [ bool ] + } + + Method [ public method recvfrom ] { + + - Parameters [3] { + Parameter #0 [ int $length ] + Parameter #1 [ mixed &$address ] + Parameter #2 [ mixed &$port = 0 ] + } + - Return [ string|false ] + } + + Method [ public method enableSSL ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method getPeerCert ] { + + - Parameters [0] { + } + - Return [ string|false ] + } + + Method [ public method verifyPeerCert ] { + + - Parameters [1] { + Parameter #0 [ bool $allow_self_signed = false ] + } + - Return [ bool ] + } + + Method [ public method isConnected ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method getsockname ] { + + - Parameters [0] { + } + - Return [ array|false ] + } + + Method [ public method getpeername ] { + + - Parameters [0] { + } + - Return [ array|false ] + } + + Method [ public method close ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method exportSocket ] { + + - Parameters [0] { + } + - Return [ Swoole\Coroutine\Socket|false ] + } + } + } + + Class [ class Swoole\Coroutine\Http\Client ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [19] { + Property [ public $socket = NULL ] + Property [ public $errCode = 0 ] + Property [ public $errMsg = '' ] + Property [ public $connected = false ] + Property [ public $host = '' ] + Property [ public $port = 0 ] + Property [ public $ssl = false ] + Property [ public $setting = NULL ] + Property [ public $requestMethod = NULL ] + Property [ public $requestHeaders = NULL ] + Property [ public $requestBody = NULL ] + Property [ public $uploadFiles = NULL ] + Property [ public $downloadFile = NULL ] + Property [ public $downloadOffset = 0 ] + Property [ public $statusCode = 0 ] + Property [ public $headers = NULL ] + Property [ public $set_cookie_headers = NULL ] + Property [ public $cookies = NULL ] + Property [ public $body = '' ] + } + + - Methods [28] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port = 0 ] + Parameter #2 [ bool $ssl = false ] + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ bool ] + } + + Method [ public method getDefer ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method setDefer ] { + + - Parameters [1] { + Parameter #0 [ bool $defer = true ] + } + - Return [ bool ] + } + + Method [ public method setMethod ] { + + - Parameters [1] { + Parameter #0 [ string $method ] + } + - Return [ bool ] + } + + Method [ public method setHeaders ] { + + - Parameters [1] { + Parameter #0 [ array $headers ] + } + - Return [ bool ] + } + + Method [ public method setBasicAuth ] { + + - Parameters [2] { + Parameter #0 [ string $username ] + Parameter #1 [ string $password ] + } + - Return [ void ] + } + + Method [ public method setCookies ] { + + - Parameters [1] { + Parameter #0 [ array $cookies ] + } + - Return [ bool ] + } + + Method [ public method setData ] { + + - Parameters [1] { + Parameter #0 [ array|string $data ] + } + - Return [ bool ] + } + + Method [ public method addFile ] { + + - Parameters [6] { + Parameter #0 [ string $path ] + Parameter #1 [ string $name ] + Parameter #2 [ ?string $type = null ] + Parameter #3 [ ?string $filename = null ] + Parameter #4 [ int $offset = 0 ] + Parameter #5 [ int $length = 0 ] + } + - Return [ bool ] + } + + Method [ public method addData ] { + + - Parameters [4] { + Parameter #0 [ string $path ] + Parameter #1 [ string $name ] + Parameter #2 [ ?string $type = null ] + Parameter #3 [ ?string $filename = null ] + } + - Return [ bool ] + } + + Method [ public method execute ] { + + - Parameters [1] { + Parameter #0 [ string $path ] + } + - Return [ bool ] + } + + Method [ public method getpeername ] { + + - Parameters [0] { + } + - Return [ array|false ] + } + + Method [ public method getsockname ] { + + - Parameters [0] { + } + - Return [ array|false ] + } + + Method [ public method get ] { + + - Parameters [1] { + Parameter #0 [ string $path ] + } + - Return [ bool ] + } + + Method [ public method post ] { + + - Parameters [2] { + Parameter #0 [ string $path ] + Parameter #1 [ mixed $data ] + } + - Return [ bool ] + } + + Method [ public method download ] { + + - Parameters [3] { + Parameter #0 [ string $path ] + Parameter #1 [ string $file ] + Parameter #2 [ int $offset = 0 ] + } + - Return [ bool ] + } + + Method [ public method getBody ] { + + - Parameters [0] { + } + - Return [ string|false ] + } + + Method [ public method getHeaders ] { + + - Parameters [0] { + } + - Return [ array|false|null ] + } + + Method [ public method getCookies ] { + + - Parameters [0] { + } + - Return [ array|false|null ] + } + + Method [ public method getStatusCode ] { + + - Parameters [0] { + } + - Return [ int|false ] + } + + Method [ public method getHeaderOut ] { + + - Parameters [0] { + } + - Return [ string|false ] + } + + Method [ public method getPeerCert ] { + + - Parameters [0] { + } + - Return [ string|false ] + } + + Method [ public method upgrade ] { + + - Parameters [1] { + Parameter #0 [ string $path ] + } + - Return [ bool ] + } + + Method [ public method push ] { + + - Parameters [3] { + Parameter #0 [ mixed $data ] + Parameter #1 [ int $opcode = SWOOLE_WEBSOCKET_OPCODE_TEXT ] + Parameter #2 [ int $flags = SWOOLE_WEBSOCKET_FLAG_FIN ] + } + - Return [ bool ] + } + + Method [ public method recv ] { + + - Parameters [1] { + Parameter #0 [ float $timeout = 0 ] + } + - Return [ Swoole\WebSocket\Frame|bool ] + } + + Method [ public method close ] { + + - Parameters [0] { + } + - Return [ bool ] + } + } + } + + Class [ class Swoole\Coroutine\Http\Client\Exception extends Swoole\Exception implements Stringable, Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected string $file = '' ] + Property [ protected int $line = 0 ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] + } + + Method [ final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] + } + } + } + + Class [ class Swoole\Coroutine\Http2\Client ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [10] { + Property [ public $errCode = 0 ] + Property [ public $errMsg = '' ] + Property [ public $sock = -1 ] + Property [ public $type = 0 ] + Property [ public $setting = NULL ] + Property [ public $socket = NULL ] + Property [ public $connected = false ] + Property [ public $host = NULL ] + Property [ public $port = 0 ] + Property [ public $ssl = false ] + } + + - Methods [13] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port = 80 ] + Parameter #2 [ bool $open_ssl = false ] + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ bool ] + } + + Method [ public method connect ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method stats ] { + + - Parameters [1] { + Parameter #0 [ string $key = '' ] + } + - Return [ array|int ] + } + + Method [ public method isStreamExist ] { + + - Parameters [1] { + Parameter #0 [ int $stream_id ] + } + - Return [ bool ] + } + + Method [ public method send ] { + + - Parameters [1] { + Parameter #0 [ Swoole\Http2\Request $request ] + } + - Return [ int|false ] + } + + Method [ public method write ] { + + - Parameters [3] { + Parameter #0 [ int $stream_id ] + Parameter #1 [ mixed $data ] + Parameter #2 [ bool $end_stream = false ] + } + - Return [ bool ] + } + + Method [ public method recv ] { + + - Parameters [1] { + Parameter #0 [ float $timeout = 0 ] + } + - Return [ Swoole\Http2\Response|false ] + } + + Method [ public method read ] { + + - Parameters [1] { + Parameter #0 [ float $timeout = 0 ] + } + - Return [ Swoole\Http2\Response|false ] + } + + Method [ public method goaway ] { + + - Parameters [2] { + Parameter #0 [ int $error_code = SWOOLE_HTTP2_ERROR_NO_ERROR ] + Parameter #1 [ string $debug_data = '' ] + } + - Return [ bool ] + } + + Method [ public method ping ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method close ] { + + - Parameters [0] { + } + - Return [ bool ] + } + } + } + + Class [ class Swoole\Coroutine\Http2\Client\Exception extends Swoole\Exception implements Stringable, Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected string $file = '' ] + Property [ protected int $line = 0 ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] + } + + Method [ final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] + } + } + } + + Class [ class Swoole\Http2\Request ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [7] { + Property [ public $path = '/' ] + Property [ public $method = 'GET' ] + Property [ public $headers = NULL ] + Property [ public $cookies = NULL ] + Property [ public $data = '' ] + Property [ public $pipeline = false ] + Property [ public $usePipelineRead = false ] + } + + - Methods [0] { + } + } + + Class [ class Swoole\Http2\Response ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [8] { + Property [ public $streamId = 0 ] + Property [ public $errCode = 0 ] + Property [ public $statusCode = 0 ] + Property [ public $pipeline = false ] + Property [ public $headers = NULL ] + Property [ public $set_cookie_headers = NULL ] + Property [ public $cookies = NULL ] + Property [ public $data = NULL ] + } + + - Methods [0] { + } + } + + Class [ class Swoole\Coroutine\MySQL ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [10] { + Property [ private $socket = NULL ] + Property [ public $serverInfo = NULL ] + Property [ public $sock = -1 ] + Property [ public $connected = false ] + Property [ public $connect_errno = 0 ] + Property [ public $connect_error = '' ] + Property [ public $affected_rows = 0 ] + Property [ public $insert_id = 0 ] + Property [ public $error = '' ] + Property [ public $errno = 0 ] + } + + - Methods [16] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method getDefer ] { + + - Parameters [0] { + } + } + + Method [ public method setDefer ] { + + - Parameters [1] { + Parameter #0 [ $defer = ] + } + } + + Method [ public method connect ] { + + - Parameters [1] { + Parameter #0 [ array $server_config = ] + } + } + + Method [ public method query ] { + + - Parameters [2] { + Parameter #0 [ $sql ] + Parameter #1 [ $timeout = ] + } + } + + Method [ public method fetch ] { + + - Parameters [0] { + } + } + + Method [ public method fetchAll ] { + + - Parameters [0] { + } + } + + Method [ public method nextResult ] { + + - Parameters [0] { + } + } + + Method [ public method prepare ] { + + - Parameters [2] { + Parameter #0 [ $query ] + Parameter #1 [ $timeout = ] + } + } + + Method [ public method recv ] { + + - Parameters [0] { + } + } + + Method [ public method begin ] { + + - Parameters [1] { + Parameter #0 [ $timeout = ] + } + } + + Method [ public method commit ] { + + - Parameters [1] { + Parameter #0 [ $timeout = ] + } + } + + Method [ public method rollback ] { + + - Parameters [1] { + Parameter #0 [ $timeout = ] + } + } + + Method [ public method escape ] { + + - Parameters [2] { + Parameter #0 [ $string ] + Parameter #1 [ $flags = ] + } + } + + Method [ public method close ] { + + - Parameters [0] { + } + } + } + } + + Class [ class Swoole\Coroutine\MySQL\Statement ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ public $id = 0 ] + Property [ public $affected_rows = 0 ] + Property [ public $insert_id = 0 ] + Property [ public $error = '' ] + Property [ public $errno = 0 ] + } + + - Methods [6] { + Method [ public method execute ] { + + - Parameters [2] { + Parameter #0 [ $params = ] + Parameter #1 [ $timeout = ] + } + } + + Method [ public method fetch ] { + + - Parameters [1] { + Parameter #0 [ $timeout = ] + } + } + + Method [ public method fetchAll ] { + + - Parameters [1] { + Parameter #0 [ $timeout = ] + } + } + + Method [ public method nextResult ] { + + - Parameters [1] { + Parameter #0 [ $timeout = ] + } + } + + Method [ public method recv ] { + + - Parameters [1] { + Parameter #0 [ $timeout = ] + } + } + + Method [ public method close ] { + + - Parameters [0] { + } + } + } + } + + Class [ class Swoole\Coroutine\MySQL\Exception extends Swoole\Exception implements Stringable, Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected string $file = '' ] + Property [ protected int $line = 0 ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] + } + + Method [ final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] + } + } + } + + Class [ class Swoole\Coroutine\Redis ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [8] { + Property [ public $host = '' ] + Property [ public $port = 0 ] + Property [ public $setting = NULL ] + Property [ public $sock = -1 ] + Property [ public $connected = false ] + Property [ public $errType = 0 ] + Property [ public $errCode = 0 ] + Property [ public $errMsg = '' ] + } + + - Methods [185] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $config = ] + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method connect ] { + + - Parameters [3] { + Parameter #0 [ $host ] + Parameter #1 [ $port = ] + Parameter #2 [ $serialize = ] + } + } + + Method [ public method getAuth ] { + + - Parameters [0] { + } + } + + Method [ public method getDBNum ] { + + - Parameters [0] { + } + } + + Method [ public method getOptions ] { + + - Parameters [0] { + } + } + + Method [ public method setOptions ] { + + - Parameters [1] { + Parameter #0 [ $options ] + } + } + + Method [ public method getDefer ] { + + - Parameters [0] { + } + } + + Method [ public method setDefer ] { + + - Parameters [1] { + Parameter #0 [ $defer ] + } + } + + Method [ public method recv ] { + + - Parameters [0] { + } + } + + Method [ public method request ] { + + - Parameters [1] { + Parameter #0 [ array $params ] + } + } + + Method [ public method close ] { + + - Parameters [0] { + } + } + + Method [ public method set ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + Parameter #2 [ $timeout = ] + Parameter #3 [ $opt = ] + } + } + + Method [ public method setBit ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $offset ] + Parameter #2 [ $value ] + } + } + + Method [ public method setEx ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $expire ] + Parameter #2 [ $value ] + } + } + + Method [ public method psetEx ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $expire ] + Parameter #2 [ $value ] + } + } + + Method [ public method lSet ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $index ] + Parameter #2 [ $value ] + } + } + + Method [ public method get ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method mGet ] { + + - Parameters [1] { + Parameter #0 [ $keys ] + } + } + + Method [ public method del ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $other_keys = ] + } + } + + Method [ public method hDel ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $member ] + Parameter #2 [ $other_members = ] + } + } + + Method [ public method hSet ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $member ] + Parameter #2 [ $value ] + } + } + + Method [ public method hMSet ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $pairs ] + } + } + + Method [ public method hSetNx ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $member ] + Parameter #2 [ $value ] + } + } + + Method [ public method delete ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $other_keys = ] + } + } + + Method [ public method mSet ] { + + - Parameters [1] { + Parameter #0 [ $pairs ] + } + } + + Method [ public method mSetNx ] { + + - Parameters [1] { + Parameter #0 [ $pairs ] + } + } + + Method [ public method getKeys ] { + + - Parameters [1] { + Parameter #0 [ $pattern ] + } + } + + Method [ public method keys ] { + + - Parameters [1] { + Parameter #0 [ $pattern ] + } + } + + Method [ public method exists ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $other_keys = ] + } + } + + Method [ public method type ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method strLen ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method lPop ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method blPop ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $timeout_or_key ] + Parameter #2 [ $extra_args = ] + } + } + + Method [ public method rPop ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method brPop ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $timeout_or_key ] + Parameter #2 [ $extra_args = ] + } + } + + Method [ public method bRPopLPush ] { + + - Parameters [3] { + Parameter #0 [ $src ] + Parameter #1 [ $dst ] + Parameter #2 [ $timeout ] + } + } + + Method [ public method lSize ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method lLen ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method sSize ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method scard ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method sPop ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method sMembers ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method sGetMembers ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method sRandMember ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $count = ] + } + } + + Method [ public method persist ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method ttl ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method pttl ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method zCard ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method zSize ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method hLen ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method hKeys ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method hVals ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method hGetAll ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method debug ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method restore ] { + + - Parameters [3] { + Parameter #0 [ $ttl ] + Parameter #1 [ $key ] + Parameter #2 [ $value ] + } + } + + Method [ public method dump ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method renameKey ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $newkey ] + } + } + + Method [ public method rename ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $newkey ] + } + } + + Method [ public method renameNx ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $newkey ] + } + } + + Method [ public method rpoplpush ] { + + - Parameters [2] { + Parameter #0 [ $src ] + Parameter #1 [ $dst ] + } + } + + Method [ public method randomKey ] { + + - Parameters [0] { + } + } + + Method [ public method pfadd ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $elements ] + } + } + + Method [ public method pfcount ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method pfmerge ] { + + - Parameters [2] { + Parameter #0 [ $dstkey ] + Parameter #1 [ $keys ] + } + } + + Method [ public method ping ] { + + - Parameters [0] { + } + } + + Method [ public method auth ] { + + - Parameters [1] { + Parameter #0 [ $password ] + } + } + + Method [ public method unwatch ] { + + - Parameters [0] { + } + } + + Method [ public method watch ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $other_keys = ] + } + } + + Method [ public method save ] { + + - Parameters [0] { + } + } + + Method [ public method bgSave ] { + + - Parameters [0] { + } + } + + Method [ public method lastSave ] { + + - Parameters [0] { + } + } + + Method [ public method flushDB ] { + + - Parameters [0] { + } + } + + Method [ public method flushAll ] { + + - Parameters [0] { + } + } + + Method [ public method dbSize ] { + + - Parameters [0] { + } + } + + Method [ public method bgrewriteaof ] { + + - Parameters [0] { + } + } + + Method [ public method time ] { + + - Parameters [0] { + } + } + + Method [ public method role ] { + + - Parameters [0] { + } + } + + Method [ public method setRange ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $offset ] + Parameter #2 [ $value ] + } + } + + Method [ public method setNx ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method getSet ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method append ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method lPushx ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method lPush ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method rPush ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method rPushx ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method sContains ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method sismember ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method zScore ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $member ] + } + } + + Method [ public method zRank ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $member ] + } + } + + Method [ public method zRevRank ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $member ] + } + } + + Method [ public method hGet ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $member ] + } + } + + Method [ public method hMGet ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $keys ] + } + } + + Method [ public method hExists ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $member ] + } + } + + Method [ public method publish ] { + + - Parameters [2] { + Parameter #0 [ $channel ] + Parameter #1 [ $message ] + } + } + + Method [ public method zIncrBy ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + Parameter #2 [ $member ] + } + } + + Method [ public method zAdd ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $score ] + Parameter #2 [ $value ] + } + } + + Method [ public method zPopMin ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $count ] + } + } + + Method [ public method zPopMax ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $count ] + } + } + + Method [ public method bzPopMin ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $timeout_or_key ] + Parameter #2 [ $extra_args = ] + } + } + + Method [ public method bzPopMax ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $timeout_or_key ] + Parameter #2 [ $extra_args = ] + } + } + + Method [ public method zDeleteRangeByScore ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $min ] + Parameter #2 [ $max ] + } + } + + Method [ public method zRemRangeByScore ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $min ] + Parameter #2 [ $max ] + } + } + + Method [ public method zCount ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $min ] + Parameter #2 [ $max ] + } + } + + Method [ public method zRange ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $start ] + Parameter #2 [ $end ] + Parameter #3 [ $scores = ] + } + } + + Method [ public method zRevRange ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $start ] + Parameter #2 [ $end ] + Parameter #3 [ $scores = ] + } + } + + Method [ public method zRangeByScore ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $start ] + Parameter #2 [ $end ] + Parameter #3 [ $options = ] + } + } + + Method [ public method zRevRangeByScore ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $start ] + Parameter #2 [ $end ] + Parameter #3 [ $options = ] + } + } + + Method [ public method zRangeByLex ] { + + - Parameters [5] { + Parameter #0 [ $key ] + Parameter #1 [ $min ] + Parameter #2 [ $max ] + Parameter #3 [ $offset = ] + Parameter #4 [ $limit = ] + } + } + + Method [ public method zRevRangeByLex ] { + + - Parameters [5] { + Parameter #0 [ $key ] + Parameter #1 [ $min ] + Parameter #2 [ $max ] + Parameter #3 [ $offset = ] + Parameter #4 [ $limit = ] + } + } + + Method [ public method zInter ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $keys ] + Parameter #2 [ $weights = ] + Parameter #3 [ $aggregate = ] + } + } + + Method [ public method zinterstore ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $keys ] + Parameter #2 [ $weights = ] + Parameter #3 [ $aggregate = ] + } + } + + Method [ public method zUnion ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $keys ] + Parameter #2 [ $weights = ] + Parameter #3 [ $aggregate = ] + } + } + + Method [ public method zunionstore ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $keys ] + Parameter #2 [ $weights = ] + Parameter #3 [ $aggregate = ] + } + } + + Method [ public method incrBy ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method hIncrBy ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $member ] + Parameter #2 [ $value ] + } + } + + Method [ public method incr ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method decrBy ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method decr ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method getBit ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $offset ] + } + } + + Method [ public method lInsert ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $position ] + Parameter #2 [ $pivot ] + Parameter #3 [ $value ] + } + } + + Method [ public method lGet ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $index ] + } + } + + Method [ public method lIndex ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $integer ] + } + } + + Method [ public method setTimeout ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $timeout ] + } + } + + Method [ public method expire ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $integer ] + } + } + + Method [ public method pexpire ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $timestamp ] + } + } + + Method [ public method expireAt ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $timestamp ] + } + } + + Method [ public method pexpireAt ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $timestamp ] + } + } + + Method [ public method move ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $dbindex ] + } + } + + Method [ public method select ] { + + - Parameters [1] { + Parameter #0 [ $dbindex ] + } + } + + Method [ public method getRange ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $start ] + Parameter #2 [ $end ] + } + } + + Method [ public method listTrim ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $start ] + Parameter #2 [ $stop ] + } + } + + Method [ public method ltrim ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $start ] + Parameter #2 [ $stop ] + } + } + + Method [ public method lGetRange ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $start ] + Parameter #2 [ $end ] + } + } + + Method [ public method lRange ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $start ] + Parameter #2 [ $end ] + } + } + + Method [ public method lRem ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + Parameter #2 [ $count ] + } + } + + Method [ public method lRemove ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + Parameter #2 [ $count ] + } + } + + Method [ public method zDeleteRangeByRank ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $start ] + Parameter #2 [ $end ] + } + } + + Method [ public method zRemRangeByRank ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $min ] + Parameter #2 [ $max ] + } + } + + Method [ public method incrByFloat ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method hIncrByFloat ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $member ] + Parameter #2 [ $value ] + } + } + + Method [ public method bitCount ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method bitOp ] { + + - Parameters [4] { + Parameter #0 [ $operation ] + Parameter #1 [ $ret_key ] + Parameter #2 [ $key ] + Parameter #3 [ $other_keys = ] + } + } + + Method [ public method sAdd ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method sMove ] { + + - Parameters [3] { + Parameter #0 [ $src ] + Parameter #1 [ $dst ] + Parameter #2 [ $value ] + } + } + + Method [ public method sDiff ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $other_keys = ] + } + } + + Method [ public method sDiffStore ] { + + - Parameters [3] { + Parameter #0 [ $dst ] + Parameter #1 [ $key ] + Parameter #2 [ $other_keys = ] + } + } + + Method [ public method sUnion ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $other_keys = ] + } + } + + Method [ public method sUnionStore ] { + + - Parameters [3] { + Parameter #0 [ $dst ] + Parameter #1 [ $key ] + Parameter #2 [ $other_keys = ] + } + } + + Method [ public method sInter ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $other_keys = ] + } + } + + Method [ public method sInterStore ] { + + - Parameters [3] { + Parameter #0 [ $dst ] + Parameter #1 [ $key ] + Parameter #2 [ $other_keys = ] + } + } + + Method [ public method sRemove ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method srem ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method zDelete ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $member ] + Parameter #2 [ $other_members = ] + } + } + + Method [ public method zRemove ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $member ] + Parameter #2 [ $other_members = ] + } + } + + Method [ public method zRem ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $member ] + Parameter #2 [ $other_members = ] + } + } + + Method [ public method pSubscribe ] { + + - Parameters [1] { + Parameter #0 [ $patterns ] + } + } + + Method [ public method subscribe ] { + + - Parameters [1] { + Parameter #0 [ $channels ] + } + } + + Method [ public method unsubscribe ] { + + - Parameters [1] { + Parameter #0 [ $channels ] + } + } + + Method [ public method pUnSubscribe ] { + + - Parameters [1] { + Parameter #0 [ $patterns ] + } + } + + Method [ public method multi ] { + + - Parameters [0] { + } + } + + Method [ public method exec ] { + + - Parameters [0] { + } + } + + Method [ public method eval ] { + + - Parameters [3] { + Parameter #0 [ $script ] + Parameter #1 [ $args = ] + Parameter #2 [ $num_keys = ] + } + } + + Method [ public method evalSha ] { + + - Parameters [3] { + Parameter #0 [ $script_sha ] + Parameter #1 [ $args = ] + Parameter #2 [ $num_keys = ] + } + } + + Method [ public method script ] { + + - Parameters [2] { + Parameter #0 [ $cmd ] + Parameter #1 [ $args = ] + } + } + + Method [ public method xLen ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method xAdd ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $id ] + Parameter #2 [ $pairs ] + Parameter #3 [ $options = ] + } + } + + Method [ public method xRead ] { + + - Parameters [2] { + Parameter #0 [ $streams ] + Parameter #1 [ $options = ] + } + } + + Method [ public method xDel ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $id ] + } + } + + Method [ public method xRange ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $start ] + Parameter #2 [ $end ] + Parameter #3 [ $count = ] + } + } + + Method [ public method xRevRange ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $start ] + Parameter #2 [ $end ] + Parameter #3 [ $count = ] + } + } + + Method [ public method xTrim ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $options = ] + } + } + + Method [ public method xGroupCreate ] { + + - Parameters [4] { + Parameter #0 [ $key ] + Parameter #1 [ $group_name ] + Parameter #2 [ $id ] + Parameter #3 [ $mkstream = ] + } + } + + Method [ public method xGroupSetId ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $group_name ] + Parameter #2 [ $id ] + } + } + + Method [ public method xGroupDestroy ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $group_name ] + } + } + + Method [ public method xGroupCreateConsumer ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $group_name ] + Parameter #2 [ $consumer_name ] + } + } + + Method [ public method xGroupDelConsumer ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $group_name ] + Parameter #2 [ $consumer_name ] + } + } + + Method [ public method xReadGroup ] { + + - Parameters [4] { + Parameter #0 [ $group_name ] + Parameter #1 [ $consumer_name ] + Parameter #2 [ $streams ] + Parameter #3 [ $options = ] + } + } + + Method [ public method xPending ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $group_name ] + Parameter #2 [ $options = ] + } + } + + Method [ public method xAck ] { + + - Parameters [3] { + Parameter #0 [ $key ] + Parameter #1 [ $group_name ] + Parameter #2 [ $id ] + } + } + + Method [ public method xClaim ] { + + - Parameters [6] { + Parameter #0 [ $key ] + Parameter #1 [ $group_name ] + Parameter #2 [ $consumer_name ] + Parameter #3 [ $min_idle_time ] + Parameter #4 [ $id ] + Parameter #5 [ $options = ] + } + } + + Method [ public method xAutoClaim ] { + + - Parameters [6] { + Parameter #0 [ $key ] + Parameter #1 [ $group_name ] + Parameter #2 [ $consumer_name ] + Parameter #3 [ $min_idle_time ] + Parameter #4 [ $start ] + Parameter #5 [ $options = ] + } + } + + Method [ public method xInfoConsumers ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $group_name ] + } + } + + Method [ public method xInfoGroups ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method xInfoStream ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + } + } + + Class [ class Swoole\Server ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [29] { + Property [ private $onStart = NULL ] + Property [ private $onBeforeShutdown = NULL ] + Property [ private $onShutdown = NULL ] + Property [ private $onWorkerStart = NULL ] + Property [ private $onWorkerStop = NULL ] + Property [ private $onBeforeReload = NULL ] + Property [ private $onAfterReload = NULL ] + Property [ private $onWorkerExit = NULL ] + Property [ private $onWorkerError = NULL ] + Property [ private $onTask = NULL ] + Property [ private $onFinish = NULL ] + Property [ private $onManagerStart = NULL ] + Property [ private $onManagerStop = NULL ] + Property [ private $onPipeMessage = NULL ] + Property [ public $setting = NULL ] + Property [ public $connections = NULL ] + Property [ public $host = '' ] + Property [ public $port = 0 ] + Property [ public $type = 0 ] + Property [ public $ssl = false ] + Property [ public $mode = 0 ] + Property [ public $ports = NULL ] + Property [ public $master_pid = 0 ] + Property [ public $manager_pid = 0 ] + Property [ public $worker_id = -1 ] + Property [ public $taskworker = false ] + Property [ public $worker_pid = 0 ] + Property [ public $stats_timer = NULL ] + Property [ public $admin_server = NULL ] + } + + - Methods [45] { + Method [ public method __construct ] { + + - Parameters [4] { + Parameter #0 [ string $host = '0.0.0.0' ] + Parameter #1 [ int $port = 0 ] + Parameter #2 [ int $mode = SWOOLE_BASE ] + Parameter #3 [ int $sock_type = SWOOLE_SOCK_TCP ] + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method listen ] { + + - Parameters [3] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port ] + Parameter #2 [ int $sock_type ] + } + - Return [ Swoole\Server\Port|false ] + } + + Method [ public method addlistener ] { + + - Parameters [3] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port ] + Parameter #2 [ int $sock_type ] + } + - Return [ Swoole\Server\Port|false ] + } + + Method [ public method on ] { + + - Parameters [2] { + Parameter #0 [ string $event_name ] + Parameter #1 [ callable $callback ] + } + - Return [ bool ] + } + + Method [ public method getCallback ] { + + - Parameters [1] { + Parameter #0 [ string $event_name ] + } + - Return [ Closure|array|string|null ] + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ bool ] + } + + Method [ public method start ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method send ] { + + - Parameters [3] { + Parameter #0 [ string|int $fd ] + Parameter #1 [ string $send_data ] + Parameter #2 [ int $serverSocket = -1 ] + } + - Return [ bool ] + } + + Method [ public method sendto ] { + + - Parameters [4] { + Parameter #0 [ string $ip ] + Parameter #1 [ int $port ] + Parameter #2 [ string $send_data ] + Parameter #3 [ int $server_socket = -1 ] + } + - Return [ bool ] + } + + Method [ public method sendwait ] { + + - Parameters [2] { + Parameter #0 [ int $conn_fd ] + Parameter #1 [ string $send_data ] + } + - Return [ bool ] + } + + Method [ public method exists ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method exist ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method protect ] { + + - Parameters [2] { + Parameter #0 [ int $fd ] + Parameter #1 [ bool $is_protected = true ] + } + - Return [ bool ] + } + + Method [ public method sendfile ] { + + - Parameters [4] { + Parameter #0 [ int $conn_fd ] + Parameter #1 [ string $filename ] + Parameter #2 [ int $offset = 0 ] + Parameter #3 [ int $length = 0 ] + } + - Return [ bool ] + } + + Method [ public method close ] { + + - Parameters [2] { + Parameter #0 [ int $fd ] + Parameter #1 [ bool $reset = false ] + } + - Return [ bool ] + } + + Method [ public method confirm ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method pause ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method resume ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method task ] { + + - Parameters [3] { + Parameter #0 [ mixed $data ] + Parameter #1 [ int $taskWorkerIndex = -1 ] + Parameter #2 [ ?callable $finishCallback = null ] + } + - Return [ int|false ] + } + + Method [ public method taskwait ] { + + - Parameters [3] { + Parameter #0 [ mixed $data ] + Parameter #1 [ float $timeout = 0.5 ] + Parameter #2 [ int $taskWorkerIndex = -1 ] + } + - Return [ mixed ] + } + + Method [ public method taskWaitMulti ] { + + - Parameters [2] { + Parameter #0 [ array $tasks ] + Parameter #1 [ float $timeout = 0.5 ] + } + - Return [ array|false ] + } + + Method [ public method taskCo ] { + + - Parameters [2] { + Parameter #0 [ array $tasks ] + Parameter #1 [ float $timeout = 0.5 ] + } + - Return [ array|false ] + } + + Method [ public method finish ] { + + - Parameters [1] { + Parameter #0 [ mixed $data ] + } + - Return [ bool ] + } + + Method [ public method reload ] { + + - Parameters [1] { + Parameter #0 [ bool $only_reload_taskworker = false ] + } + - Return [ bool ] + } + + Method [ public method shutdown ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method stop ] { + + - Parameters [2] { + Parameter #0 [ int $workerId = -1 ] + Parameter #1 [ bool $waitEvent = false ] + } + - Return [ bool ] + } + + Method [ public method getLastError ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method heartbeat ] { + + - Parameters [1] { + Parameter #0 [ bool $ifCloseConnection = true ] + } + - Return [ array|false ] + } + + Method [ public method getClientInfo ] { + + - Parameters [3] { + Parameter #0 [ int $fd ] + Parameter #1 [ int $reactor_id = -1 ] + Parameter #2 [ bool $ignoreError = false ] + } + - Return [ array|false ] + } + + Method [ public method getClientList ] { + + - Parameters [2] { + Parameter #0 [ int $start_fd = 0 ] + Parameter #1 [ int $find_count = 10 ] + } + - Return [ array|false ] + } + + Method [ public method getWorkerId ] { + + - Parameters [0] { + } + - Return [ int|false ] + } + + Method [ public method getWorkerPid ] { + + - Parameters [1] { + Parameter #0 [ int $worker_id = -1 ] + } + - Return [ int|false ] + } + + Method [ public method getWorkerStatus ] { + + - Parameters [1] { + Parameter #0 [ int $worker_id = -1 ] + } + - Return [ int|false ] + } + + Method [ public method getManagerPid ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method getMasterPid ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method connection_info ] { + + - Parameters [3] { + Parameter #0 [ int $fd ] + Parameter #1 [ int $reactor_id = -1 ] + Parameter #2 [ bool $ignoreError = false ] + } + - Return [ array|false ] + } + + Method [ public method connection_list ] { + + - Parameters [2] { + Parameter #0 [ int $start_fd = 0 ] + Parameter #1 [ int $find_count = 10 ] + } + - Return [ array|false ] + } + + Method [ public method sendMessage ] { + + - Parameters [2] { + Parameter #0 [ mixed $message ] + Parameter #1 [ int $dst_worker_id ] + } + - Return [ bool ] + } + + Method [ public method command ] { + + - Parameters [5] { + Parameter #0 [ string $name ] + Parameter #1 [ int $process_id ] + Parameter #2 [ int $process_type ] + Parameter #3 [ mixed $data ] + Parameter #4 [ bool $json_decode = true ] + } + - Return [ array|string|false ] + } + + Method [ public method addCommand ] { + + - Parameters [3] { + Parameter #0 [ string $name ] + Parameter #1 [ int $accepted_process_types ] + Parameter #2 [ callable $callback ] + } + - Return [ bool ] + } + + Method [ public method addProcess ] { + + - Parameters [1] { + Parameter #0 [ Swoole\Process $process ] + } + - Return [ int ] + } + + Method [ public method stats ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method getSocket ] { + + - Parameters [1] { + Parameter #0 [ int $port = 0 ] + } + - Return [ Socket|false ] + } + + Method [ public method bind ] { + + - Parameters [2] { + Parameter #0 [ int $fd ] + Parameter #1 [ int $uid ] + } + - Return [ bool ] + } + } + } + + Class [ final class Swoole\Server\Task ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [2] { + Method [ static public method pack ] { + + - Parameters [1] { + Parameter #0 [ mixed $data ] + } + - Return [ string|false ] + } + + Method [ static public method unpack ] { + + - Parameters [1] { + Parameter #0 [ string $data ] + } + - Return [ mixed ] + } + } + + - Properties [5] { + Property [ public $data = NULL ] + Property [ public $dispatch_time = 0.0 ] + Property [ public $id = -1 ] + Property [ public $worker_id = -1 ] + Property [ public $flags = 0 ] + } + + - Methods [1] { + Method [ public method finish ] { + + - Parameters [1] { + Parameter #0 [ mixed $data ] + } + - Return [ bool ] + } + } + } + + Class [ class Swoole\Server\Event ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ public $reactor_id = 0 ] + Property [ public $fd = 0 ] + Property [ public $dispatch_time = 0.0 ] + Property [ public $data = NULL ] + } + + - Methods [0] { + } + } + + Class [ class Swoole\Server\Packet ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ public $server_socket = 0 ] + Property [ public $server_port = 0 ] + Property [ public $dispatch_time = 0.0 ] + Property [ public $address = NULL ] + Property [ public $port = 0 ] + } + + - Methods [0] { + } + } + + Class [ class Swoole\Server\PipeMessage ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [3] { + Property [ public $source_worker_id = 0 ] + Property [ public $dispatch_time = 0.0 ] + Property [ public $data = NULL ] + } + + - Methods [0] { + } + } + + Class [ class Swoole\Server\StatusInfo ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ public $worker_id = 0 ] + Property [ public $worker_pid = 0 ] + Property [ public $status = 0 ] + Property [ public $exit_code = 0 ] + Property [ public $signal = 0 ] + } + + - Methods [0] { + } + } + + Class [ class Swoole\Server\TaskResult ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ public $task_id = 0 ] + Property [ public $task_worker_id = 0 ] + Property [ public $dispatch_time = 0.0 ] + Property [ public $data = NULL ] + } + + - Methods [0] { + } + } + + Class [ class Swoole\Connection\Iterator implements Iterator, Traversable, ArrayAccess, Countable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [12] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method rewind ] { + + - Parameters [0] { + } + - Return [ void ] + } + + Method [ public method next ] { + + - Parameters [0] { + } + - Return [ void ] + } + + Method [ public method current ] { + + - Parameters [0] { + } + - Return [ mixed ] + } + + Method [ public method key ] { + + - Parameters [0] { + } + - Return [ mixed ] + } + + Method [ public method valid ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method count ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ mixed $fd ] + } + - Return [ bool ] + } + + Method [ public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ mixed $fd ] + } + - Return [ mixed ] + } + + Method [ public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ mixed $fd ] + Parameter #1 [ mixed $value ] + } + - Return [ void ] + } + + Method [ public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ mixed $fd ] + } + - Return [ void ] + } + } + } + + Class [ class Swoole\Server\Port ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [19] { + Property [ private $onConnect = NULL ] + Property [ private $onReceive = NULL ] + Property [ private $onClose = NULL ] + Property [ private $onPacket = NULL ] + Property [ private $onBufferFull = NULL ] + Property [ private $onBufferEmpty = NULL ] + Property [ private $onRequest = NULL ] + Property [ private $onHandshake = NULL ] + Property [ private $onOpen = NULL ] + Property [ private $onMessage = NULL ] + Property [ private $onDisconnect = NULL ] + Property [ private $onBeforeHandshakeResponse = NULL ] + Property [ public $host = NULL ] + Property [ public $port = 0 ] + Property [ public $type = 0 ] + Property [ public $sock = -1 ] + Property [ public $ssl = false ] + Property [ public $setting = NULL ] + Property [ public $connections = NULL ] + } + + - Methods [6] { + Method [ private method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ void ] + } + + Method [ public method on ] { + + - Parameters [2] { + Parameter #0 [ string $event_name ] + Parameter #1 [ callable $callback ] + } + - Return [ bool ] + } + + Method [ public method getCallback ] { + + - Parameters [1] { + Parameter #0 [ string $event_name ] + } + - Return [ ?Closure ] + } + + Method [ public method getSocket ] { + + - Parameters [0] { + } + - Return [ Socket|false ] + } + } + } + + Class [ class Swoole\Http\Request ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method create ] { + + - Parameters [1] { + Parameter #0 [ array $options = [] ] + } + - Return [ Swoole\Http\Request ] + } + } + + - Properties [9] { + Property [ public $fd = 0 ] + Property [ public $streamId = 0 ] + Property [ public $header = NULL ] + Property [ public $server = NULL ] + Property [ public $cookie = NULL ] + Property [ public $get = NULL ] + Property [ public $files = NULL ] + Property [ public $post = NULL ] + Property [ public $tmpfiles = NULL ] + } + + - Methods [6] { + Method [ public method getContent ] { + + - Parameters [0] { + } + - Return [ string|false ] + } + + Method [ public method rawContent ] { + + - Parameters [0] { + } + - Return [ string|false ] + } + + Method [ public method getData ] { + + - Parameters [0] { + } + - Return [ string|false ] + } + + Method [ public method parse ] { + + - Parameters [1] { + Parameter #0 [ string $data ] + } + - Return [ int|false ] + } + + Method [ public method isCompleted ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method getMethod ] { + + - Parameters [0] { + } + - Return [ string|false ] + } + } + } + + Class [ class Swoole\Http\Response ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method create ] { + + - Parameters [2] { + Parameter #0 [ object|array|int $server = -1 ] + Parameter #1 [ int $fd = -1 ] + } + - Return [ Swoole\Http\Response|false ] + } + } + + - Properties [5] { + Property [ public $fd = 0 ] + Property [ public $socket = NULL ] + Property [ public $header = NULL ] + Property [ public $cookie = NULL ] + Property [ public $trailer = NULL ] + } + + - Methods [21] { + Method [ public method initHeader ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method isWritable ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method cookie ] { + + - Parameters [9] { + Parameter #0 [ string $name ] + Parameter #1 [ string $value = '' ] + Parameter #2 [ int $expires = 0 ] + Parameter #3 [ string $path = '/' ] + Parameter #4 [ string $domain = '' ] + Parameter #5 [ bool $secure = false ] + Parameter #6 [ bool $httponly = false ] + Parameter #7 [ string $samesite = '' ] + Parameter #8 [ string $priority = '' ] + } + - Return [ bool ] + } + + Method [ public method setCookie ] { + + - Parameters [9] { + Parameter #0 [ string $name ] + Parameter #1 [ string $value = '' ] + Parameter #2 [ int $expires = 0 ] + Parameter #3 [ string $path = '/' ] + Parameter #4 [ string $domain = '' ] + Parameter #5 [ bool $secure = false ] + Parameter #6 [ bool $httponly = false ] + Parameter #7 [ string $samesite = '' ] + Parameter #8 [ string $priority = '' ] + } + - Return [ bool ] + } + + Method [ public method rawcookie ] { + + - Parameters [9] { + Parameter #0 [ string $name ] + Parameter #1 [ string $value = '' ] + Parameter #2 [ int $expires = 0 ] + Parameter #3 [ string $path = '/' ] + Parameter #4 [ string $domain = '' ] + Parameter #5 [ bool $secure = false ] + Parameter #6 [ bool $httponly = false ] + Parameter #7 [ string $samesite = '' ] + Parameter #8 [ string $priority = '' ] + } + - Return [ bool ] + } + + Method [ public method status ] { + + - Parameters [2] { + Parameter #0 [ int $http_code ] + Parameter #1 [ string $reason = '' ] + } + - Return [ bool ] + } + + Method [ public method setStatusCode ] { + + - Parameters [2] { + Parameter #0 [ int $http_code ] + Parameter #1 [ string $reason = '' ] + } + - Return [ bool ] + } + + Method [ public method header ] { + + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ array|string $value ] + Parameter #2 [ bool $format = true ] + } + - Return [ bool ] + } + + Method [ public method setHeader ] { + + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ array|string $value ] + Parameter #2 [ bool $format = true ] + } + - Return [ bool ] + } + + Method [ public method trailer ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ string $value ] + } + - Return [ bool ] + } + + Method [ public method ping ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method goaway ] { + + - Parameters [2] { + Parameter #0 [ int $error_code = SWOOLE_HTTP2_ERROR_NO_ERROR ] + Parameter #1 [ string $debug_data = '' ] + } + - Return [ bool ] + } + + Method [ public method write ] { + + - Parameters [1] { + Parameter #0 [ string $content ] + } + - Return [ bool ] + } + + Method [ public method end ] { + + - Parameters [1] { + Parameter #0 [ ?string $content = null ] + } + - Return [ bool ] + } + + Method [ public method sendfile ] { + + - Parameters [3] { + Parameter #0 [ string $filename ] + Parameter #1 [ int $offset = 0 ] + Parameter #2 [ int $length = 0 ] + } + - Return [ bool ] + } + + Method [ public method redirect ] { + + - Parameters [2] { + Parameter #0 [ string $location ] + Parameter #1 [ int $http_code = 302 ] + } + - Return [ bool ] + } + + Method [ public method detach ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method upgrade ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method push ] { + + - Parameters [3] { + Parameter #0 [ Swoole\WebSocket\Frame|string $data ] + Parameter #1 [ int $opcode = SWOOLE_WEBSOCKET_OPCODE_TEXT ] + Parameter #2 [ int $flags = SWOOLE_WEBSOCKET_FLAG_FIN ] + } + - Return [ bool ] + } + + Method [ public method recv ] { + + - Parameters [1] { + Parameter #0 [ float $timeout = 0 ] + } + - Return [ Swoole\WebSocket\Frame|string|false ] + } + + Method [ public method close ] { + + - Parameters [0] { + } + - Return [ bool ] + } + } + } + + Class [ class Swoole\Http\Server extends Swoole\Server ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [15] { + Property [ public $setting = NULL ] + Property [ public $connections = NULL ] + Property [ public $host = '' ] + Property [ public $port = 0 ] + Property [ public $type = 0 ] + Property [ public $ssl = false ] + Property [ public $mode = 0 ] + Property [ public $ports = NULL ] + Property [ public $master_pid = 0 ] + Property [ public $manager_pid = 0 ] + Property [ public $worker_id = -1 ] + Property [ public $taskworker = false ] + Property [ public $worker_pid = 0 ] + Property [ public $stats_timer = NULL ] + Property [ public $admin_server = NULL ] + } + + - Methods [45] { + Method [ public method __construct ] { + + - Parameters [4] { + Parameter #0 [ string $host = '0.0.0.0' ] + Parameter #1 [ int $port = 0 ] + Parameter #2 [ int $mode = SWOOLE_BASE ] + Parameter #3 [ int $sock_type = SWOOLE_SOCK_TCP ] + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method listen ] { + + - Parameters [3] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port ] + Parameter #2 [ int $sock_type ] + } + - Return [ Swoole\Server\Port|false ] + } + + Method [ public method addlistener ] { + + - Parameters [3] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port ] + Parameter #2 [ int $sock_type ] + } + - Return [ Swoole\Server\Port|false ] + } + + Method [ public method on ] { + + - Parameters [2] { + Parameter #0 [ string $event_name ] + Parameter #1 [ callable $callback ] + } + - Return [ bool ] + } + + Method [ public method getCallback ] { + + - Parameters [1] { + Parameter #0 [ string $event_name ] + } + - Return [ Closure|array|string|null ] + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ bool ] + } + + Method [ public method start ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method send ] { + + - Parameters [3] { + Parameter #0 [ string|int $fd ] + Parameter #1 [ string $send_data ] + Parameter #2 [ int $serverSocket = -1 ] + } + - Return [ bool ] + } + + Method [ public method sendto ] { + + - Parameters [4] { + Parameter #0 [ string $ip ] + Parameter #1 [ int $port ] + Parameter #2 [ string $send_data ] + Parameter #3 [ int $server_socket = -1 ] + } + - Return [ bool ] + } + + Method [ public method sendwait ] { + + - Parameters [2] { + Parameter #0 [ int $conn_fd ] + Parameter #1 [ string $send_data ] + } + - Return [ bool ] + } + + Method [ public method exists ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method exist ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method protect ] { + + - Parameters [2] { + Parameter #0 [ int $fd ] + Parameter #1 [ bool $is_protected = true ] + } + - Return [ bool ] + } + + Method [ public method sendfile ] { + + - Parameters [4] { + Parameter #0 [ int $conn_fd ] + Parameter #1 [ string $filename ] + Parameter #2 [ int $offset = 0 ] + Parameter #3 [ int $length = 0 ] + } + - Return [ bool ] + } + + Method [ public method close ] { + + - Parameters [2] { + Parameter #0 [ int $fd ] + Parameter #1 [ bool $reset = false ] + } + - Return [ bool ] + } + + Method [ public method confirm ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method pause ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method resume ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method task ] { + + - Parameters [3] { + Parameter #0 [ mixed $data ] + Parameter #1 [ int $taskWorkerIndex = -1 ] + Parameter #2 [ ?callable $finishCallback = null ] + } + - Return [ int|false ] + } + + Method [ public method taskwait ] { + + - Parameters [3] { + Parameter #0 [ mixed $data ] + Parameter #1 [ float $timeout = 0.5 ] + Parameter #2 [ int $taskWorkerIndex = -1 ] + } + - Return [ mixed ] + } + + Method [ public method taskWaitMulti ] { + + - Parameters [2] { + Parameter #0 [ array $tasks ] + Parameter #1 [ float $timeout = 0.5 ] + } + - Return [ array|false ] + } + + Method [ public method taskCo ] { + + - Parameters [2] { + Parameter #0 [ array $tasks ] + Parameter #1 [ float $timeout = 0.5 ] + } + - Return [ array|false ] + } + + Method [ public method finish ] { + + - Parameters [1] { + Parameter #0 [ mixed $data ] + } + - Return [ bool ] + } + + Method [ public method reload ] { + + - Parameters [1] { + Parameter #0 [ bool $only_reload_taskworker = false ] + } + - Return [ bool ] + } + + Method [ public method shutdown ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method stop ] { + + - Parameters [2] { + Parameter #0 [ int $workerId = -1 ] + Parameter #1 [ bool $waitEvent = false ] + } + - Return [ bool ] + } + + Method [ public method getLastError ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method heartbeat ] { + + - Parameters [1] { + Parameter #0 [ bool $ifCloseConnection = true ] + } + - Return [ array|false ] + } + + Method [ public method getClientInfo ] { + + - Parameters [3] { + Parameter #0 [ int $fd ] + Parameter #1 [ int $reactor_id = -1 ] + Parameter #2 [ bool $ignoreError = false ] + } + - Return [ array|false ] + } + + Method [ public method getClientList ] { + + - Parameters [2] { + Parameter #0 [ int $start_fd = 0 ] + Parameter #1 [ int $find_count = 10 ] + } + - Return [ array|false ] + } + + Method [ public method getWorkerId ] { + + - Parameters [0] { + } + - Return [ int|false ] + } + + Method [ public method getWorkerPid ] { + + - Parameters [1] { + Parameter #0 [ int $worker_id = -1 ] + } + - Return [ int|false ] + } + + Method [ public method getWorkerStatus ] { + + - Parameters [1] { + Parameter #0 [ int $worker_id = -1 ] + } + - Return [ int|false ] + } + + Method [ public method getManagerPid ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method getMasterPid ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method connection_info ] { + + - Parameters [3] { + Parameter #0 [ int $fd ] + Parameter #1 [ int $reactor_id = -1 ] + Parameter #2 [ bool $ignoreError = false ] + } + - Return [ array|false ] + } + + Method [ public method connection_list ] { + + - Parameters [2] { + Parameter #0 [ int $start_fd = 0 ] + Parameter #1 [ int $find_count = 10 ] + } + - Return [ array|false ] + } + + Method [ public method sendMessage ] { + + - Parameters [2] { + Parameter #0 [ mixed $message ] + Parameter #1 [ int $dst_worker_id ] + } + - Return [ bool ] + } + + Method [ public method command ] { + + - Parameters [5] { + Parameter #0 [ string $name ] + Parameter #1 [ int $process_id ] + Parameter #2 [ int $process_type ] + Parameter #3 [ mixed $data ] + Parameter #4 [ bool $json_decode = true ] + } + - Return [ array|string|false ] + } + + Method [ public method addCommand ] { + + - Parameters [3] { + Parameter #0 [ string $name ] + Parameter #1 [ int $accepted_process_types ] + Parameter #2 [ callable $callback ] + } + - Return [ bool ] + } + + Method [ public method addProcess ] { + + - Parameters [1] { + Parameter #0 [ Swoole\Process $process ] + } + - Return [ int ] + } + + Method [ public method stats ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method getSocket ] { + + - Parameters [1] { + Parameter #0 [ int $port = 0 ] + } + - Return [ Socket|false ] + } + + Method [ public method bind ] { + + - Parameters [2] { + Parameter #0 [ int $fd ] + Parameter #1 [ int $uid ] + } + - Return [ bool ] + } + } + } + + Class [ final class Swoole\Coroutine\Http\Server ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [7] { + Property [ public $fd = -1 ] + Property [ public $host = NULL ] + Property [ public $port = -1 ] + Property [ public $ssl = false ] + Property [ public $settings = NULL ] + Property [ public $errCode = 0 ] + Property [ public $errMsg = '' ] + } + + - Methods [6] { + Method [ public method __construct ] { + + - Parameters [4] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port = 0 ] + Parameter #2 [ bool $ssl = false ] + Parameter #3 [ bool $reuse_port = false ] + } + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ bool ] + } + + Method [ public method handle ] { + + - Parameters [2] { + Parameter #0 [ string $pattern ] + Parameter #1 [ callable $callback ] + } + - Return [ void ] + } + + Method [ private method onAccept ] { + + - Parameters [1] { + Parameter #0 [ Swoole\Coroutine\Socket $conn ] + } + - Return [ void ] + } + + Method [ public method start ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method shutdown ] { + + - Parameters [0] { + } + - Return [ void ] + } + } + } + + Class [ class Swoole\WebSocket\Server extends Swoole\Http\Server ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [2] { + Method [ static public method pack ] { + + - Parameters [3] { + Parameter #0 [ Swoole\WebSocket\Frame|string $data ] + Parameter #1 [ int $opcode = WEBSOCKET_OPCODE_TEXT ] + Parameter #2 [ int $flags = SWOOLE_WEBSOCKET_FLAG_FIN ] + } + - Return [ string ] + } + + Method [ static public method unpack ] { + + - Parameters [1] { + Parameter #0 [ string $data ] + } + - Return [ Swoole\WebSocket\Frame ] + } + } + + - Properties [15] { + Property [ public $setting = NULL ] + Property [ public $connections = NULL ] + Property [ public $host = '' ] + Property [ public $port = 0 ] + Property [ public $type = 0 ] + Property [ public $ssl = false ] + Property [ public $mode = 0 ] + Property [ public $ports = NULL ] + Property [ public $master_pid = 0 ] + Property [ public $manager_pid = 0 ] + Property [ public $worker_id = -1 ] + Property [ public $taskworker = false ] + Property [ public $worker_pid = 0 ] + Property [ public $stats_timer = NULL ] + Property [ public $admin_server = NULL ] + } + + - Methods [48] { + Method [ public method push ] { + + - Parameters [4] { + Parameter #0 [ int $fd ] + Parameter #1 [ Swoole\WebSocket\Frame|string $data ] + Parameter #2 [ int $opcode = WEBSOCKET_OPCODE_TEXT ] + Parameter #3 [ int $flags = SWOOLE_WEBSOCKET_FLAG_FIN ] + } + - Return [ bool ] + } + + Method [ public method disconnect ] { + + - Parameters [3] { + Parameter #0 [ int $fd ] + Parameter #1 [ int $code = SWOOLE_WEBSOCKET_CLOSE_NORMAL ] + Parameter #2 [ string $reason = "" ] + } + - Return [ bool ] + } + + Method [ public method isEstablished ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method __construct ] { + + - Parameters [4] { + Parameter #0 [ string $host = '0.0.0.0' ] + Parameter #1 [ int $port = 0 ] + Parameter #2 [ int $mode = SWOOLE_BASE ] + Parameter #3 [ int $sock_type = SWOOLE_SOCK_TCP ] + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method listen ] { + + - Parameters [3] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port ] + Parameter #2 [ int $sock_type ] + } + - Return [ Swoole\Server\Port|false ] + } + + Method [ public method addlistener ] { + + - Parameters [3] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port ] + Parameter #2 [ int $sock_type ] + } + - Return [ Swoole\Server\Port|false ] + } + + Method [ public method on ] { + + - Parameters [2] { + Parameter #0 [ string $event_name ] + Parameter #1 [ callable $callback ] + } + - Return [ bool ] + } + + Method [ public method getCallback ] { + + - Parameters [1] { + Parameter #0 [ string $event_name ] + } + - Return [ Closure|array|string|null ] + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ bool ] + } + + Method [ public method start ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method send ] { + + - Parameters [3] { + Parameter #0 [ string|int $fd ] + Parameter #1 [ string $send_data ] + Parameter #2 [ int $serverSocket = -1 ] + } + - Return [ bool ] + } + + Method [ public method sendto ] { + + - Parameters [4] { + Parameter #0 [ string $ip ] + Parameter #1 [ int $port ] + Parameter #2 [ string $send_data ] + Parameter #3 [ int $server_socket = -1 ] + } + - Return [ bool ] + } + + Method [ public method sendwait ] { + + - Parameters [2] { + Parameter #0 [ int $conn_fd ] + Parameter #1 [ string $send_data ] + } + - Return [ bool ] + } + + Method [ public method exists ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method exist ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method protect ] { + + - Parameters [2] { + Parameter #0 [ int $fd ] + Parameter #1 [ bool $is_protected = true ] + } + - Return [ bool ] + } + + Method [ public method sendfile ] { + + - Parameters [4] { + Parameter #0 [ int $conn_fd ] + Parameter #1 [ string $filename ] + Parameter #2 [ int $offset = 0 ] + Parameter #3 [ int $length = 0 ] + } + - Return [ bool ] + } + + Method [ public method close ] { + + - Parameters [2] { + Parameter #0 [ int $fd ] + Parameter #1 [ bool $reset = false ] + } + - Return [ bool ] + } + + Method [ public method confirm ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method pause ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method resume ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method task ] { + + - Parameters [3] { + Parameter #0 [ mixed $data ] + Parameter #1 [ int $taskWorkerIndex = -1 ] + Parameter #2 [ ?callable $finishCallback = null ] + } + - Return [ int|false ] + } + + Method [ public method taskwait ] { + + - Parameters [3] { + Parameter #0 [ mixed $data ] + Parameter #1 [ float $timeout = 0.5 ] + Parameter #2 [ int $taskWorkerIndex = -1 ] + } + - Return [ mixed ] + } + + Method [ public method taskWaitMulti ] { + + - Parameters [2] { + Parameter #0 [ array $tasks ] + Parameter #1 [ float $timeout = 0.5 ] + } + - Return [ array|false ] + } + + Method [ public method taskCo ] { + + - Parameters [2] { + Parameter #0 [ array $tasks ] + Parameter #1 [ float $timeout = 0.5 ] + } + - Return [ array|false ] + } + + Method [ public method finish ] { + + - Parameters [1] { + Parameter #0 [ mixed $data ] + } + - Return [ bool ] + } + + Method [ public method reload ] { + + - Parameters [1] { + Parameter #0 [ bool $only_reload_taskworker = false ] + } + - Return [ bool ] + } + + Method [ public method shutdown ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method stop ] { + + - Parameters [2] { + Parameter #0 [ int $workerId = -1 ] + Parameter #1 [ bool $waitEvent = false ] + } + - Return [ bool ] + } + + Method [ public method getLastError ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method heartbeat ] { + + - Parameters [1] { + Parameter #0 [ bool $ifCloseConnection = true ] + } + - Return [ array|false ] + } + + Method [ public method getClientInfo ] { + + - Parameters [3] { + Parameter #0 [ int $fd ] + Parameter #1 [ int $reactor_id = -1 ] + Parameter #2 [ bool $ignoreError = false ] + } + - Return [ array|false ] + } + + Method [ public method getClientList ] { + + - Parameters [2] { + Parameter #0 [ int $start_fd = 0 ] + Parameter #1 [ int $find_count = 10 ] + } + - Return [ array|false ] + } + + Method [ public method getWorkerId ] { + + - Parameters [0] { + } + - Return [ int|false ] + } + + Method [ public method getWorkerPid ] { + + - Parameters [1] { + Parameter #0 [ int $worker_id = -1 ] + } + - Return [ int|false ] + } + + Method [ public method getWorkerStatus ] { + + - Parameters [1] { + Parameter #0 [ int $worker_id = -1 ] + } + - Return [ int|false ] + } + + Method [ public method getManagerPid ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method getMasterPid ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method connection_info ] { + + - Parameters [3] { + Parameter #0 [ int $fd ] + Parameter #1 [ int $reactor_id = -1 ] + Parameter #2 [ bool $ignoreError = false ] + } + - Return [ array|false ] + } + + Method [ public method connection_list ] { + + - Parameters [2] { + Parameter #0 [ int $start_fd = 0 ] + Parameter #1 [ int $find_count = 10 ] + } + - Return [ array|false ] + } + + Method [ public method sendMessage ] { + + - Parameters [2] { + Parameter #0 [ mixed $message ] + Parameter #1 [ int $dst_worker_id ] + } + - Return [ bool ] + } + + Method [ public method command ] { + + - Parameters [5] { + Parameter #0 [ string $name ] + Parameter #1 [ int $process_id ] + Parameter #2 [ int $process_type ] + Parameter #3 [ mixed $data ] + Parameter #4 [ bool $json_decode = true ] + } + - Return [ array|string|false ] + } + + Method [ public method addCommand ] { + + - Parameters [3] { + Parameter #0 [ string $name ] + Parameter #1 [ int $accepted_process_types ] + Parameter #2 [ callable $callback ] + } + - Return [ bool ] + } + + Method [ public method addProcess ] { + + - Parameters [1] { + Parameter #0 [ Swoole\Process $process ] + } + - Return [ int ] + } + + Method [ public method stats ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method getSocket ] { + + - Parameters [1] { + Parameter #0 [ int $port = 0 ] + } + - Return [ Socket|false ] + } + + Method [ public method bind ] { + + - Parameters [2] { + Parameter #0 [ int $fd ] + Parameter #1 [ int $uid ] + } + - Return [ bool ] + } + } + } + + Class [ class Swoole\WebSocket\Frame implements Stringable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [2] { + Method [ static public method pack ] { + + - Parameters [3] { + Parameter #0 [ Swoole\WebSocket\Frame|string $data ] + Parameter #1 [ int $opcode = WEBSOCKET_OPCODE_TEXT ] + Parameter #2 [ int $flags = SWOOLE_WEBSOCKET_FLAG_FIN ] + } + - Return [ string ] + } + + Method [ static public method unpack ] { + + - Parameters [1] { + Parameter #0 [ string $data ] + } + - Return [ Swoole\WebSocket\Frame ] + } + } + + - Properties [5] { + Property [ public $fd = 0 ] + Property [ public $data = '' ] + Property [ public $opcode = 1 ] + Property [ public $flags = 1 ] + Property [ public $finish = NULL ] + } + + - Methods [1] { + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] + } + } + } + + Class [ class Swoole\WebSocket\CloseFrame extends Swoole\WebSocket\Frame implements Stringable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [2] { + Method [ static public method pack ] { + + - Parameters [3] { + Parameter #0 [ Swoole\WebSocket\Frame|string $data ] + Parameter #1 [ int $opcode = WEBSOCKET_OPCODE_TEXT ] + Parameter #2 [ int $flags = SWOOLE_WEBSOCKET_FLAG_FIN ] + } + - Return [ string ] + } + + Method [ static public method unpack ] { + + - Parameters [1] { + Parameter #0 [ string $data ] + } + - Return [ Swoole\WebSocket\Frame ] + } + } + + - Properties [7] { + Property [ public $fd = 0 ] + Property [ public $data = '' ] + Property [ public $flags = 1 ] + Property [ public $finish = NULL ] + Property [ public $opcode = 8 ] + Property [ public $code = 1000 ] + Property [ public $reason = '' ] + } + + - Methods [1] { + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] + } + } + } + + Class [ class Swoole\Redis\Server extends Swoole\Server ] { + + - Constants [7] { + Constant [ public int NIL ] { 1 } + Constant [ public int ERROR ] { 0 } + Constant [ public int STATUS ] { 2 } + Constant [ public int INT ] { 3 } + Constant [ public int STRING ] { 4 } + Constant [ public int SET ] { 5 } + Constant [ public int MAP ] { 6 } + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method format ] { + + - Parameters [2] { + Parameter #0 [ int $type ] + Parameter #1 [ mixed $value = null ] + } + - Return [ string|false ] + } + } + + - Properties [15] { + Property [ public $setting = NULL ] + Property [ public $connections = NULL ] + Property [ public $host = '' ] + Property [ public $port = 0 ] + Property [ public $type = 0 ] + Property [ public $ssl = false ] + Property [ public $mode = 0 ] + Property [ public $ports = NULL ] + Property [ public $master_pid = 0 ] + Property [ public $manager_pid = 0 ] + Property [ public $worker_id = -1 ] + Property [ public $taskworker = false ] + Property [ public $worker_pid = 0 ] + Property [ public $stats_timer = NULL ] + Property [ public $admin_server = NULL ] + } + + - Methods [47] { + Method [ public method setHandler ] { + + - Parameters [2] { + Parameter #0 [ string $command ] + Parameter #1 [ callable $callback ] + } + - Return [ bool ] + } + + Method [ public method getHandler ] { + + - Parameters [1] { + Parameter #0 [ string $command ] + } + - Return [ Closure ] + } + + Method [ public method __construct ] { + + - Parameters [4] { + Parameter #0 [ string $host = '0.0.0.0' ] + Parameter #1 [ int $port = 0 ] + Parameter #2 [ int $mode = SWOOLE_BASE ] + Parameter #3 [ int $sock_type = SWOOLE_SOCK_TCP ] + } + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + + Method [ public method listen ] { + + - Parameters [3] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port ] + Parameter #2 [ int $sock_type ] + } + - Return [ Swoole\Server\Port|false ] + } + + Method [ public method addlistener ] { + + - Parameters [3] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port ] + Parameter #2 [ int $sock_type ] + } + - Return [ Swoole\Server\Port|false ] + } + + Method [ public method on ] { + + - Parameters [2] { + Parameter #0 [ string $event_name ] + Parameter #1 [ callable $callback ] + } + - Return [ bool ] + } + + Method [ public method getCallback ] { + + - Parameters [1] { + Parameter #0 [ string $event_name ] + } + - Return [ Closure|array|string|null ] + } + + Method [ public method set ] { + + - Parameters [1] { + Parameter #0 [ array $settings ] + } + - Return [ bool ] + } + + Method [ public method start ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method send ] { + + - Parameters [3] { + Parameter #0 [ string|int $fd ] + Parameter #1 [ string $send_data ] + Parameter #2 [ int $serverSocket = -1 ] + } + - Return [ bool ] + } + + Method [ public method sendto ] { + + - Parameters [4] { + Parameter #0 [ string $ip ] + Parameter #1 [ int $port ] + Parameter #2 [ string $send_data ] + Parameter #3 [ int $server_socket = -1 ] + } + - Return [ bool ] + } + + Method [ public method sendwait ] { + + - Parameters [2] { + Parameter #0 [ int $conn_fd ] + Parameter #1 [ string $send_data ] + } + - Return [ bool ] + } + + Method [ public method exists ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method exist ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method protect ] { + + - Parameters [2] { + Parameter #0 [ int $fd ] + Parameter #1 [ bool $is_protected = true ] + } + - Return [ bool ] + } + + Method [ public method sendfile ] { + + - Parameters [4] { + Parameter #0 [ int $conn_fd ] + Parameter #1 [ string $filename ] + Parameter #2 [ int $offset = 0 ] + Parameter #3 [ int $length = 0 ] + } + - Return [ bool ] + } + + Method [ public method close ] { + + - Parameters [2] { + Parameter #0 [ int $fd ] + Parameter #1 [ bool $reset = false ] + } + - Return [ bool ] + } + + Method [ public method confirm ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method pause ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method resume ] { + + - Parameters [1] { + Parameter #0 [ int $fd ] + } + - Return [ bool ] + } + + Method [ public method task ] { + + - Parameters [3] { + Parameter #0 [ mixed $data ] + Parameter #1 [ int $taskWorkerIndex = -1 ] + Parameter #2 [ ?callable $finishCallback = null ] + } + - Return [ int|false ] + } + + Method [ public method taskwait ] { + + - Parameters [3] { + Parameter #0 [ mixed $data ] + Parameter #1 [ float $timeout = 0.5 ] + Parameter #2 [ int $taskWorkerIndex = -1 ] + } + - Return [ mixed ] + } + + Method [ public method taskWaitMulti ] { + + - Parameters [2] { + Parameter #0 [ array $tasks ] + Parameter #1 [ float $timeout = 0.5 ] + } + - Return [ array|false ] + } + + Method [ public method taskCo ] { + + - Parameters [2] { + Parameter #0 [ array $tasks ] + Parameter #1 [ float $timeout = 0.5 ] + } + - Return [ array|false ] + } + + Method [ public method finish ] { + + - Parameters [1] { + Parameter #0 [ mixed $data ] + } + - Return [ bool ] + } + + Method [ public method reload ] { + + - Parameters [1] { + Parameter #0 [ bool $only_reload_taskworker = false ] + } + - Return [ bool ] + } + + Method [ public method shutdown ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ public method stop ] { + + - Parameters [2] { + Parameter #0 [ int $workerId = -1 ] + Parameter #1 [ bool $waitEvent = false ] + } + - Return [ bool ] + } + + Method [ public method getLastError ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method heartbeat ] { + + - Parameters [1] { + Parameter #0 [ bool $ifCloseConnection = true ] + } + - Return [ array|false ] + } + + Method [ public method getClientInfo ] { + + - Parameters [3] { + Parameter #0 [ int $fd ] + Parameter #1 [ int $reactor_id = -1 ] + Parameter #2 [ bool $ignoreError = false ] + } + - Return [ array|false ] + } + + Method [ public method getClientList ] { + + - Parameters [2] { + Parameter #0 [ int $start_fd = 0 ] + Parameter #1 [ int $find_count = 10 ] + } + - Return [ array|false ] + } + + Method [ public method getWorkerId ] { + + - Parameters [0] { + } + - Return [ int|false ] + } + + Method [ public method getWorkerPid ] { + + - Parameters [1] { + Parameter #0 [ int $worker_id = -1 ] + } + - Return [ int|false ] + } + + Method [ public method getWorkerStatus ] { + + - Parameters [1] { + Parameter #0 [ int $worker_id = -1 ] + } + - Return [ int|false ] + } + + Method [ public method getManagerPid ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method getMasterPid ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ public method connection_info ] { + + - Parameters [3] { + Parameter #0 [ int $fd ] + Parameter #1 [ int $reactor_id = -1 ] + Parameter #2 [ bool $ignoreError = false ] + } + - Return [ array|false ] + } + + Method [ public method connection_list ] { + + - Parameters [2] { + Parameter #0 [ int $start_fd = 0 ] + Parameter #1 [ int $find_count = 10 ] + } + - Return [ array|false ] + } + + Method [ public method sendMessage ] { + + - Parameters [2] { + Parameter #0 [ mixed $message ] + Parameter #1 [ int $dst_worker_id ] + } + - Return [ bool ] + } + + Method [ public method command ] { + + - Parameters [5] { + Parameter #0 [ string $name ] + Parameter #1 [ int $process_id ] + Parameter #2 [ int $process_type ] + Parameter #3 [ mixed $data ] + Parameter #4 [ bool $json_decode = true ] + } + - Return [ array|string|false ] + } + + Method [ public method addCommand ] { + + - Parameters [3] { + Parameter #0 [ string $name ] + Parameter #1 [ int $accepted_process_types ] + Parameter #2 [ callable $callback ] + } + - Return [ bool ] + } + + Method [ public method addProcess ] { + + - Parameters [1] { + Parameter #0 [ Swoole\Process $process ] + } + - Return [ int ] + } + + Method [ public method stats ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method getSocket ] { + + - Parameters [1] { + Parameter #0 [ int $port = 0 ] + } + - Return [ Socket|false ] + } + + Method [ public method bind ] { + + - Parameters [2] { + Parameter #0 [ int $fd ] + Parameter #1 [ int $uid ] + } + - Return [ bool ] + } + } + } + + Class [ class Swoole\NameResolver\Context ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ public method __construct ] { + + - Parameters [2] { + Parameter #0 [ int $family = AF_INET ] + Parameter #1 [ bool $withPort = false ] + } + } + } + } + + Class [ class Swoole\Coroutine\PostgreSQL ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ public $error = NULL ] + Property [ public $errCode = 0 ] + Property [ public $resultStatus = 0 ] + Property [ public $resultDiag = NULL ] + Property [ public $notices = NULL ] + } + + - Methods [12] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method connect ] { + + - Parameters [2] { + Parameter #0 [ string $conninfo ] + Parameter #1 [ float $timeout = 2 ] + } + - Return [ bool ] + } + + Method [ public method query ] { + + - Parameters [1] { + Parameter #0 [ string $query ] + } + - Return [ Swoole\Coroutine\PostgreSQLStatement|false ] + } + + Method [ public method prepare ] { + + - Parameters [1] { + Parameter #0 [ string $query ] + } + - Return [ Swoole\Coroutine\PostgreSQLStatement|false ] + } + + Method [ public method metaData ] { + + - Parameters [1] { + Parameter #0 [ string $table_name ] + } + - Return [ array|false ] + } + + Method [ public method escape ] { + + - Parameters [1] { + Parameter #0 [ string $string ] + } + - Return [ string|false ] + } + + Method [ public method escapeLiteral ] { + + - Parameters [1] { + Parameter #0 [ string $string ] + } + - Return [ string|false ] + } + + Method [ public method escapeIdentifier ] { + + - Parameters [1] { + Parameter #0 [ string $string ] + } + - Return [ string|false ] + } + + Method [ public method createLOB ] { + + - Parameters [0] { + } + - Return [ int|false ] + } + + Method [ public method openLOB ] { + + - Parameters [2] { + Parameter #0 [ int $oid ] + Parameter #1 [ string $mode = "rb" ] + } + } + + Method [ public method unlinkLOB ] { + + - Parameters [1] { + Parameter #0 [ int $oid ] + } + - Return [ bool ] + } + + Method [ public method __destruct ] { + + - Parameters [0] { + } + } + } + } + + Class [ class Swoole\Coroutine\PostgreSQLStatement ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ public $error = NULL ] + Property [ public $errCode = 0 ] + Property [ public $resultStatus = 0 ] + Property [ public $resultDiag = NULL ] + Property [ public $notices = NULL ] + } + + - Methods [9] { + Method [ public method execute ] { + + - Parameters [1] { + Parameter #0 [ array $params = [] ] + } + - Return [ bool ] + } + + Method [ public method fetchAll ] { + + - Parameters [1] { + Parameter #0 [ int $result_type = SW_PGSQL_ASSOC ] + } + - Return [ array|false ] + } + + Method [ public method affectedRows ] { + + - Parameters [0] { + } + - Return [ int|false ] + } + + Method [ public method numRows ] { + + - Parameters [0] { + } + - Return [ int|false ] + } + + Method [ public method fieldCount ] { + + - Parameters [0] { + } + - Return [ int|false ] + } + + Method [ public method fetchObject ] { + + - Parameters [3] { + Parameter #0 [ ?int $row = 0 ] + Parameter #1 [ ?string $class_name = null ] + Parameter #2 [ array $ctor_params = [] ] + } + - Return [ object|false ] + } + + Method [ public method fetchAssoc ] { + + - Parameters [2] { + Parameter #0 [ ?int $row = 0 ] + Parameter #1 [ int $result_type = SW_PGSQL_ASSOC ] + } + - Return [ array|false ] + } + + Method [ public method fetchArray ] { + + - Parameters [2] { + Parameter #0 [ ?int $row = 0 ] + Parameter #1 [ int $result_type = SW_PGSQL_BOTH ] + } + - Return [ array|false ] + } + + Method [ public method fetchRow ] { + + - Parameters [2] { + Parameter #0 [ ?int $row = 0 ] + Parameter #1 [ int $result_type = SW_PGSQL_NUM ] + } + - Return [ array|false ] + } + } + } + } +} + diff --git a/php-pecl-swoole5.spec b/php-pecl-swoole5.spec new file mode 100644 index 0000000..69e0d30 --- /dev/null +++ b/php-pecl-swoole5.spec @@ -0,0 +1,1033 @@ +# remirepo spec file for php-pecl-swoole5 +# +# Copyright (c) 2013-2024 Remi Collet +# License: CC-BY-SA-4.0 +# http://creativecommons.org/licenses/by-sa/4.0/ +# +# Please, preserve the changelog entries +# + +%if 0%{?scl:1} +%scl_package php-pecl-swoole5 +%else +%global _root_prefix %{_prefix} +%endif + +%global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} +%global pecl_name swoole +# After 20-sockets, 20-json and 20-mysqlnd +%global ini_name 40-%{pecl_name}.ini + +%bcond_without cares +%bcond_without nghttpd2 +# disabled by default to avoid dependency on Oracle Instant Client +%bcond_with oracle + +%ifarch aarch64 +%global oraclever 19.22 +%global oraclelib 19.1 +%global oracledir 19.22 +%else +%global oraclever 21.13 +%global oraclelib 21.1 +%global oracledir 21 +%endif + + +%if 0%{?fedora} || 0%{?rhel} >= 8 +%bcond_without pgsql +%else +%bcond_with pgsql +%endif + +%if 0%{?fedora} || 0%{?rhel} >= 8 +%bcond_without brotli +%else +%bcond_with brotli +%endif + +%if 0%{?fedora} || 0%{?rhel} >= 8 +%bcond_without curl +%else +%bcond_with curl +%endif + +%bcond_without nghttpd2 + +%global upstream_version 5.1.3 +#global upstream_prever RC2 +%global sources %{pecl_name}-%{upstream_version}%{?upstream_prever} +%global _configure ../%{sources}/configure + +Summary: PHP's asynchronous concurrent distributed networking framework +Name: %{?scl_prefix}php-pecl-%{pecl_name}5 +Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} +Release: 1%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} +# Extension is Apache-2.0 +# BSD-3-Clause: Hiredis +# MIT: nlohmann/json, nghttp2 +License: Apache-2.0 AND BSD-3-Clause AND MIT +URL: https://pecl.php.net/package/%{pecl_name} +Source0: https://pecl.php.net/get/%{pecl_name}-%{upstream_version}%{?upstream_prever}.tgz + +Patch0: 0001-missing-header.patch +Patch1: 0002-fix-implicit-int.patch + +BuildRequires: make +BuildRequires: %{?dtsprefix}gcc +BuildRequires: %{?dtsprefix}gcc-c++ +BuildRequires: %{?scl_prefix}php-devel >= 8.0 +BuildRequires: %{?scl_prefix}php-pear +BuildRequires: %{?scl_prefix}php-curl +BuildRequires: %{?scl_prefix}php-json +BuildRequires: %{?scl_prefix}php-sockets +BuildRequires: %{?scl_prefix}php-mysqlnd +BuildRequires: %{?scl_prefix}php-pdo +BuildRequires: pcre-devel +BuildRequires: openssl-devel >= 1.0.2 +BuildRequires: zlib-devel +%if %{with curl} +BuildRequires: libcurl-devel >= 7.56 +%endif +%if %{with cares} +BuildRequires: c-ares-devel +%endif +%if %{with brotli} +BuildRequires: brotli-devel +%endif +%if %{with pgsql} +BuildRequires: libpq-devel +%endif +%if %{with nghttpd2} +BuildRequires: libnghttp2-devel +%endif +BuildRequires: unixODBC-devel +BuildRequires: sqlite-devel +%if %{with oracle} +%ifarch aarch64 +BuildRequires: oracle-instantclient%{oraclever}-devel +# Should requires libclntsh.so.19.1()(aarch-64), but it's not provided by Oracle RPM. +Requires: libclntsh.so.%{oraclelib} +AutoReq: 0 +%else +BuildRequires: oracle-instantclient-devel >= %{oraclever} +%endif +%endif + + +Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} +Requires: %{?scl_prefix}php(api) = %{php_core_api} +Requires: %{?scl_prefix}php-curl%{?_isa} +Requires: %{?scl_prefix}php-json%{?_isa} +Requires: %{?scl_prefix}php-sockets%{?_isa} +Requires: %{?scl_prefix}php-mysqlnd%{?_isa} +Requires: %{?scl_prefix}php-pdo%{?_isa} + +Provides: %{?scl_prefix}php-%{pecl_name} = %{version} +Provides: %{?scl_prefix}php-%{pecl_name}%{?_isa} = %{version} +Provides: %{?scl_prefix}php-pecl(%{pecl_name}) = %{version} +Provides: %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} + +%if 0%{?fedora} >= 37 || 0%{?rhel} >= 10 || "%{php_version}" >= "8.2" +Obsoletes: %{?scl_prefix}php-pecl-%{pecl_name} < 5 +Provides: %{?scl_prefix}php-pecl-%{pecl_name} = %{version}-%{release} +Provides: %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa} = %{version}-%{release} +Obsoletes: %{?scl_prefix}php-pecl-%{pecl_name}2 < 5 +Provides: %{?scl_prefix}php-pecl-%{pecl_name}2 = %{version}-%{release} +Provides: %{?scl_prefix}php-pecl-%{pecl_name}2%{?_isa} = %{version}-%{release} +Obsoletes: %{?scl_prefix}php-pecl-%{pecl_name}4 < 5 +Provides: %{?scl_prefix}php-pecl-%{pecl_name}4 = %{version}-%{release} +Provides: %{?scl_prefix}php-pecl-%{pecl_name}4%{?_isa} = %{version}-%{release} +%else +# Single version can be installed +Conflicts: %{?scl_prefix}php-pecl-%{pecl_name} < 5 +Conflicts: %{?scl_prefix}php-pecl-%{pecl_name}2 < 5 +Conflicts: %{?scl_prefix}php-pecl-%{pecl_name}4 < 5 +%endif +# Only one extension can be installed (same symbols) +Conflicts: %{?scl_prefix}php-pecl-openswoole + + +%description +Event-driven asynchronous and concurrent networking engine with +high performance for PHP. +- event-driven +- coroutines +- asynchronous non-blocking +- built-in tcp/http/websocket/http2 server +- coroutine tcp/http/websocket client +- coroutine mysql client +- coroutine redis client +- coroutine read/write file system +- coroutine dns lookup +- automatically replace blocking functions to non-blocking +- support IPv4/IPv6/UnixSocket/TCP/UDP +- support SSL/TLS encrypted transmission + +Documentation: https://rawgit.com/tchiotludo/swoole-ide-helper/english/docs/ + +Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}. + + +%package devel +Summary: %{name} developer files (header) +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: %{?scl_prefix}php-devel%{?_isa} + +%description devel +These are the files needed to compile programs using %{name}. + + +%prep +%setup -q -c + +# Don't install/register tests, install examples as doc +sed \ + -e '/Makefile/s/role="doc"/role="src"/' \ + -e '/samples/s/role="doc"/role="src"/' \ + -e '/name="library/s/role="doc"/role="src"/' \ + %{?_licensedir: -e '/LICENSE/s/role="doc"/role="src"/' } \ + %{?_licensedir: -e '/COPYING/s/role="doc"/role="src"/' } \ + -i package.xml + + +cd %{sources} +%patch -P0 -p1 +%patch -P1 -p1 + +cp -p thirdparty/hiredis/COPYING hiredis-COPYING +%if %{with nghttpd2} +rm -r thirdparty/nghttp2 +%else +cp -p thirdparty/nghttp2/COPYING nghttp2-COPYING +%endif + +# Sanity check, really often broken +extver=$(sed -n '/#define SWOOLE_VERSION /{s/.* "//;s/".*$//;p}' include/swoole_version.h) +if test "x${extver}" != "x%{upstream_version}%{?upstream_prever}"; then + : Error: Upstream extension version is ${extver}, expecting %{upstream_version}%{?upstream_prever}. + exit 1 +fi +cd .. + +mkdir NTS +%if %{with_zts} +# Duplicate source tree for NTS / ZTS build +mkdir ZTS +%endif + +# Create configuration file +cat << 'EOF' | tee %{ini_name} +; Enable %{pecl_name} extension module +extension=%{pecl_name}.so + +; Configuration +;swoole.enable_coroutine = On +;swoole.enable_library = On +;swoole.enable_fiber_mock = Off +;swoole.enable_preemptive_scheduler = Off +;swoole.display_errors = On +:swoole.use_shortname = On +;swoole.unixsock_buffer_size = 8388608 +EOF + + +%build +%{?dtsenable} + +peclbuild() { +%configure \ + --enable-swoole \ + --enable-sockets \ + --enable-trace-log \ + --enable-openssl \ + --enable-mysqlnd \ +%if %{with pgsql} + --enable-swoole-pgsql \ +%endif +%if %{with curl} + --enable-swoole-curl \ +%endif + --enable-swoole-coro-time \ +%if %{with cares} + --enable-cares \ +%endif +%if %{with brotli} + --enable-brotli \ +%else + --disable-brotli \ +%endif +%if %{with nghttpd2} + --with-nghttp2-dir=%{_root_prefix} \ +%endif +%if %{with oracle} + --with-swoole-oracle=instantclient,%{_root_prefix}/lib/oracle/%{oracledir}/client64/lib \ +%endif + --with-swoole-odbc=unixodbc,%{_root_prefix} \ + --enable-swoole-sqlite \ + --with-libdir=%{_lib} \ + --with-php-config=$1 + +make %{?_smp_mflags} +} + +cd %{sources} +%{__phpize} + +cd ../NTS +peclbuild %{__phpconfig} + +%if %{with_zts} +cd ../ZTS +peclbuild %{__ztsphpconfig} +%endif + + +%install +%{?dtsenable} + +make -C NTS \ + install INSTALL_ROOT=%{buildroot} + +# install config file +install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} + +# Install XML package description +install -D -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml + +%if %{with_zts} +make -C ZTS \ + install INSTALL_ROOT=%{buildroot} + +install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} +%endif + +# Test and Documentation +for i in $(grep 'role="test"' package.xml | sed -e 's/^.*name="//;s/".*$//') +do install -Dpm 644 %{sources}/$i %{buildroot}%{pecl_testdir}/%{pecl_name}/$i +done +for i in $(grep 'role="doc"' package.xml | sed -e 's/^.*name="//;s/".*$//') +do install -Dpm 644 %{sources}/$i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i +done + +# code not compatible with Python 3 +rm %{buildroot}%{pecl_testdir}/%{pecl_name}/tests/swoole_process/echo.py +rm %{buildroot}%{pecl_docdir}/%{pecl_name}/examples/process/echo.py + + +%if 0%{?fedora} < 24 && 0%{?rhel} < 8 +# when pear installed alone, after us +%triggerin -- %{?scl_prefix}php-pear +if [ -x %{__pecl} ] ; then + %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : +fi + +# posttrans as pear can be installed after us +%posttrans +if [ -x %{__pecl} ] ; then + %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : +fi + +%postun +if [ $1 -eq 0 -a -x %{__pecl} ] ; then + %{pecl_uninstall} %{pecl_name} >/dev/null || : +fi +%endif + + +%check +OPT="--no-php-ini" +[ -f %{php_extdir}/curl.so ] && OPT="$OPT -d extension=curl" +[ -f %{php_extdir}/sockets.so ] && OPT="$OPT -d extension=sockets" +[ -f %{php_extdir}/mysqlnd.so ] && OPT="$OPT -d extension=mysqlnd" +[ -f %{php_extdir}/pdo.so ] && OPT="$OPT -d extension=pdo" + +cd NTS +: Minimal load test for NTS extension +%{__php} $OPT \ + --define extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \ + --modules | grep '^%{pecl_name}$' + +%if %{with_zts} +cd ../ZTS +: Minimal load test for ZTS extension +%{__ztsphp} $OPT \ + --define extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \ + --modules | grep '^%{pecl_name}$' +%endif + + +%files +%{?_licensedir:%license %{sources}/LICENSE} +%{?_licensedir:%license %{sources}/*-COPYING} +%{!?_licensedir:%{pecl_docdir}/%{pecl_name}/LICENSE} +%{!?_licensedir:%{pecl_docdir}/%{pecl_name}/thirdparty/*/COPYING} +%doc %{pecl_docdir}/%{pecl_name}/*md +%{pecl_xmldir}/%{name}.xml + +%config(noreplace) %{php_inidir}/%{ini_name} +%{php_extdir}/%{pecl_name}.so + +%if %{with_zts} +%config(noreplace) %{php_ztsinidir}/%{ini_name} +%{php_ztsextdir}/%{pecl_name}.so +%endif + + +%files devel +%doc %{pecl_testdir}/%{pecl_name} +%doc %{pecl_docdir}/%{pecl_name}/core-tests +%doc %{pecl_docdir}/%{pecl_name}/docs +%doc %{pecl_docdir}/%{pecl_name}/examples +%doc %{pecl_docdir}/%{pecl_name}/gdbinit +%doc %{pecl_docdir}/%{pecl_name}/thirdparty +%{php_incldir}/ext/%{pecl_name} + +%if %{with_zts} +%{php_ztsincldir}/ext/%{pecl_name} +%endif + + +%changelog +* Thu Jun 6 2024 Remi Collet - 5.1.3-1 +- update to 5.1.3 +- fix build warnings (errors with GCC 14) using patch from + https://github.com/swoole/swoole-src/pull/5363 + +* Mon May 13 2024 Remi Collet - 5.1.2-2 +- refresh sources +- drop patch merged upstream + +* Wed Jan 24 2024 Remi Collet - 5.1.2-1 +- update to 5.1.2 +- fix out of sources tree build using patch from + https://github.com/swoole/swoole-src/pull/5239 + +* Mon Nov 27 2023 Remi Collet - 5.1.1-1 +- update to 5.1.1 + +* Fri Sep 29 2023 Remi Collet - 5.1.0-1 +- update to 5.1.0 +- add dependency on pdo extension +- new coroutine_odbc enabled +- new coroutine_sqlite enabled +- new coroutine_oracle disabled + +* Mon Sep 4 2023 Remi Collet - 5.0.3-2 +- add upstream patch for PHP 8.3 + +* Wed Apr 26 2023 Remi Collet - 5.0.3-1 +- update to 5.0.3 +- use system libnghttp2 +- drop patch merged upstream +- fix use of system headers with system libnghttp2 using patch from + https://github.com/swoole/swoole-src/pull/5038 +- build out of sources tree + +* Fri Feb 17 2023 Remi Collet - 5.0.2-2 +- fix GCC 13 build using patch from + https://github.com/swoole/swoole-src/pull/4985 + +* Mon Feb 6 2023 Remi Collet - 5.0.2-1 +- update to 5.0.2 + +* Mon Nov 7 2022 Remi Collet - 5.0.1-1 +- update to 5.0.1 + +* Tue Aug 2 2022 Remi Collet - 5.0.0-1 +- update to 5.0.0 +- rename to php-pecl-swoole5 +- raise dependency on PHP 8.0 +- add postgresql support on Fedora, EL-8 and EL-9 +- remove curl support on EL-7 + +* Tue Jul 12 2022 Remi Collet - 4.8.11-1 +- update to 4.8.11 + +* Wed Jun 22 2022 Remi Collet - 4.8.10-1 +- update to 4.8.10 + +* Mon Apr 18 2022 Remi Collet - 4.8.9-1 +- update to 4.8.9 +- add workaround to build failure reported as + https://github.com/swoole/swoole-src/issues/4693 + +* Wed Mar 16 2022 Remi Collet - 4.8.8-1 +- update to 4.8.8 + +* Thu Feb 24 2022 Remi Collet - 4.8.7-1 +- update to 4.8.7 + +* Thu Jan 13 2022 Remi Collet - 4.8.6-1 +- update to 4.8.6 + +* Sat Dec 25 2021 Remi Collet - 4.8.5-1 +- update to 4.8.5 + +* Sat Dec 18 2021 Remi Collet - 4.8.4-1 +- update to 4.8.4 + +* Wed Dec 1 2021 Remi Collet - 4.8.3-1 +- update to 4.8.3 + +* Thu Nov 18 2021 Remi Collet - 4.8.2-1 +- update to 4.8.2 + +* Sat Oct 30 2021 Remi Collet - 4.8.1-1 +- update to 4.8.1 +- open https://github.com/swoole/swoole-src/pull/4457 + add LICENSE file for thirdparty/nlohmann + +* Fri Oct 15 2021 Remi Collet - 4.8.0-1 +- update to 4.8.0 + +* Wed Sep 01 2021 Remi Collet - 4.7.1-2 +- rebuild for 8.1.0RC1 + +* Thu Aug 26 2021 Remi Collet - 4.7.1-1 +- update to 4.7.1 +- drop patch merged upstream + +* Fri Jul 23 2021 Remi Collet - 4.7.0-2 +- add patch for PHP 8.1.0beta1 from + https://github.com/swoole/swoole-src/pull/4335 + +* Mon Jul 19 2021 Remi Collet - 4.7.0-1 +- update to 4.7.0 + +* Sun May 16 2021 Remi Collet - 4.6.7-1 +- update to 4.6.7 + +* Thu Apr 22 2021 Remi Collet - 4.6.6-1 +- update to 4.6.6 + +* Fri Apr 9 2021 Remi Collet - 4.6.5-1 +- update to 4.6.5 + +* Thu Mar 11 2021 Remi Collet - 4.6.4-1 +- update to 4.6.4 + +* Tue Feb 9 2021 Remi Collet - 4.6.3-1 +- update to 4.6.3 + +* Mon Jan 25 2021 Remi Collet - 4.6.2-1 +- update to 4.6.2 + +* Mon Jan 11 2021 Remi Collet - 4.6.1-1 +- update to 4.6.1 + +* Wed Jan 6 2021 Remi Collet - 4.6.0-1 +- update to 4.6.0 +- enable curl support +- raise dependency on PHP 7.2 + +* Wed Dec 23 2020 Remi Collet - 4.5.10-1 +- update to 4.5.10 + +* Fri Nov 27 2020 Remi Collet - 4.5.9-1 +- update to 4.5.9 + +* Mon Nov 23 2020 Remi Collet - 4.5.8-2 +- add upstream patch for PHP 8 + +* Sat Nov 21 2020 Remi Collet - 4.5.8-1 +- update to 4.5.8 + +* Mon Nov 9 2020 Remi Collet - 4.5.7-1 +- update to 4.5.7 + +* Fri Oct 30 2020 Remi Collet - 4.5.6-1 +- update to 4.5.6 +- raise dependency on openssl 1.0.2 (drop EL-6 support) +- add dependency on json extension + +* Thu Oct 15 2020 Remi Collet - 4.5.5-1 +- update to 4.5.5 +- drop patches merged upstream + +* Wed Sep 30 2020 Remi Collet - 4.5.4-3 +- rebuild for PHP 8.0.0RC1 +- add patch from https://github.com/swoole/swoole-src/pull/3713 + +* Sun Sep 20 2020 Remi Collet - 4.5.4-2 +- add upstream patch for EL-6 and for PHP 8 +- add patch for EL-6 from + https://github.com/swoole/swoole-src/pull/3686 + +* Sun Sep 20 2020 Remi Collet - 4.5.4-1 +- update to 4.5.4 +- open https://github.com/swoole/swoole-src/issues/3681 broken build on EL-6 +- open https://github.com/swoole/swoole-src/issues/3683 broken build on PHP 8 + +* Sun Aug 30 2020 Remi Collet - 4.5.3-1 +- update to 4.5.3 + +* Thu May 28 2020 Remi Collet - 4.5.2-1 +- update to 4.5.2 + +* Mon May 11 2020 Remi Collet - 4.5.1-1 +- update to 4.5.1 + +* Mon Apr 27 2020 Remi Collet - 4.5.0-2 +- add upstream patch to fix 32-bit and old GCC builds + +* Mon Apr 27 2020 Remi Collet - 4.5.0-1 +- update to 4.5.0 +- open https://github.com/swoole/swoole-src/issues/3276 + broken 32-bit build + +* Sun Apr 26 2020 Remi Collet - 4.4.18-1 +- update to 4.4.18 +- open https://github.com/swoole/swoole-src/issues/3274 + missing libstdc++ in link + +* Wed Apr 1 2020 Remi Collet - 4.4.17-1 +- update to 4.4.17 + +* Wed Feb 19 2020 Remi Collet - 4.4.16-1 +- update to 4.4.16 + +* Wed Jan 15 2020 Remi Collet - 4.4.15-1 +- update to 4.4.15 + +* Thu Dec 26 2019 Remi Collet - 4.4.14-1 +- update to 4.4.14 + +* Wed Dec 18 2019 Remi Collet - 4.4.13-1 +- update to 4.4.13 + +* Wed Dec 11 2019 Remi Collet - 4.4.13~RC2-1 +- update to 4.4.13RC2 + +* Thu Dec 5 2019 Remi Collet - 4.4.13~RC1-1 +- update to 4.4.13RC1 + +* Mon Nov 4 2019 Remi Collet - 4.4.12-1 +- update to 4.4.12 + +* Thu Oct 31 2019 Remi Collet - 4.4.10-1 +- update to 4.4.10 + +* Wed Oct 30 2019 Remi Collet - 4.4.9-1 +- update to 4.4.9 +- open https://github.com/swoole/swoole-src/issues/2925 + undefined symbol: BrotliDecoderDecompress + +* Tue Oct 15 2019 Remi Collet - 4.4.8-1 +- update to 4.4.8 + +* Wed Sep 25 2019 Remi Collet - 4.4.7-1 +- update to 4.4.7 + +* Thu Sep 19 2019 Remi Collet - 4.4.6-1 +- update to 4.4.6 + +* Tue Sep 03 2019 Remi Collet - 4.4.5-2 +- rebuild for 7.4.0RC1 + +* Fri Aug 30 2019 Remi Collet - 4.4.5-1 +- update to 4.4.5 + +* Fri Aug 23 2019 Remi Collet - 4.4.4-2 +- drop echo.py which is python 2 only + +* Sun Aug 18 2019 Remi Collet - 4.4.4-1 +- update to 4.4.4 + +* Sat Aug 3 2019 Remi Collet - 4.4.3-1 +- update to 4.4.3 + +* Fri Jul 26 2019 Remi Collet - 4.4.2-1 +- update to 4.4.2 +- drop patch merged upstream + +* Tue Jul 23 2019 Remi Collet - 4.4.1-2 +- rebuild for 7.4.0beta1 +- add patch from https://github.com/swoole/swoole-src/pull/2707 + +* Tue Jul 16 2019 Remi Collet - 4.4.1-1 +- update to 4.4.1 + +* Sun Jul 7 2019 Remi Collet - 4.4.0-1 +- update to 4.4.0 +- raise dependency on PHP 7.1 +- drop `Serialize` module +- drop `PostgreSQL` module + +* Fri Jun 14 2019 Remi Collet - 4.3.5-1 +- update to 4.3.5 + +* Fri May 17 2019 Remi Collet - 4.3.4-1 +- update to 4.3.4 + +* Tue Apr 23 2019 Remi Collet - 4.3.3-1 +- update to 4.3.3 + +* Mon Apr 15 2019 Remi Collet - 4.3.2-1 +- update to 4.3.2 + +* Wed Mar 13 2019 Remi Collet - 4.3.1-1 +- update to 4.3.1 + +* Mon Mar 11 2019 Remi Collet - 4.3.0-2 +- test build for upstream patch + +* Thu Mar 7 2019 Remi Collet - 4.3.0-1 +- update to 4.3.0 +- drop dependencies on libnghttp2 and c-ares +- open https://github.com/swoole/swoole-src/issues/2411 32-bit broken +- remove the --enable-trace-log build option on 32-bit + +* Mon Feb 4 2019 Remi Collet - 4.2.13-1 +- update to 4.2.13 + +* Sun Jan 6 2019 Remi Collet - 4.2.12-1 +- update to 4.2.12 +- use --enable-cares build option +- swoole.aio_thread_num configuration option removed + +* Fri Dec 28 2018 Remi Collet - 4.2.11-1 +- update to 4.2.11 + +* Thu Dec 20 2018 Remi Collet - 4.2.10-1 +- update to 4.2.10 + +* Mon Nov 26 2018 Remi Collet - 4.2.9-1 +- update to 4.2.9 + +* Mon Nov 19 2018 Remi Collet - 4.2.8-1 +- update to 4.2.8 + +* Sat Nov 10 2018 Remi Collet - 4.2.7-1 +- update to 4.2.7 + +* Mon Nov 5 2018 Remi Collet - 4.2.6-1 +- update to 4.2.6 +- use hiredis bundled library +- open https://github.com/swoole/swoole-src/issues/2089 borken with PHP 7.3 +- open https://github.com/php/php-src/pull/3652 fix for C++ + +* Sun Oct 28 2018 Remi Collet - 4.2.5-1 +- update to 4.2.5 + +* Fri Oct 26 2018 Remi Collet - 4.2.4-1 +- update to 4.2.4 + +* Tue Oct 16 2018 Remi Collet - 4.2.3-1 +- update to 4.2.3 + +* Mon Oct 15 2018 Remi Collet - 4.2.2-1 +- update to 4.2.2 +- open https://github.com/swoole/swoole-src/issues/2038 bad version + +* Wed Sep 19 2018 Remi Collet - 4.2.1-1 +- update to 4.2.1 + +* Tue Sep 18 2018 Remi Collet - 4.2.0-1 +- update to 4.2.0 +- open https://github.com/swoole/swoole-src/issues/1982 + undefined symbol: zif_time_nanosleep +- open https://github.com/swoole/swoole-src/issues/1983 + undefined symbol: php_stream_mode_sanitize_fdopen_fopencookie +- open https://github.com/swoole/swoole-src/issues/1986 + ZTS build is broken: undefined symbol: _Z14virtual_unlinkPKc +- open https://github.com/swoole/swoole-src/pull/1985 + zif_handler to save function pointer + +* Wed Sep 5 2018 Remi Collet - 4.1.2-1 +- update to 4.1.2 + +* Fri Aug 31 2018 Remi Collet - 4.1.1-1 +- update to 4.1.1 (no change) + +* Fri Aug 31 2018 Remi Collet - 4.1.0-1 +- update to 4.1.0 +- add dependency on brotli library (Fedora) +- open https://github.com/swoole/swoole-src/issues/1931 missing files + +* Thu Aug 16 2018 Remi Collet - 4.0.4-2 +- rebuild for 7.3.0beta2 new ABI + +* Sat Aug 11 2018 Remi Collet - 4.0.4-1 +- update to 4.0.4 + +* Fri Jul 20 2018 Remi Collet - 4.0.3-1 +- update to 4.0.3 + +* Wed Jul 18 2018 Remi Collet - 4.0.2-2 +- rebuild for 7.3.0alpha4 new ABI + +* Fri Jul 13 2018 Remi Collet - 4.0.2-1 +- update to 4.0.2 + +* Fri Jun 29 2018 Remi Collet - 4.0.1-2 +- osboletes old versions on F29+, EL-8+ and PHP 7.3+ + +* Thu Jun 21 2018 Remi Collet - 4.0.1-1 +- update to 4.0.1 + +* Thu Jun 14 2018 Remi Collet - 4.0.0-1 +- update to 4.0.0 +- rename to php-pecl-swoole4 +- raise dependency on PHP 7.1 +- add patch to ensure g++ is used a linktime from + https://github.com/swoole/swoole-src/pull/1717 + +* Wed May 23 2018 Remi Collet - 2.2.0-1 +- update to 2.2.0 + +* Mon Apr 16 2018 Remi Collet - 2.1.3-1 +- update to 2.1.3 + +* Tue Apr 10 2018 Remi Collet - 2.1.2-1 +- update to 2.1.2 +- add PostgreSQL coroutine client on Fedora 24+ +- enable trace log +- open https://github.com/swoole/swoole-src/issues/1558 + broken build with PHP 7.0 + +* Wed Mar 7 2018 Remi Collet - 2.1.1-1 +- update to 2.1.1 + +* Fri Feb 9 2018 Remi Collet - 2.1.0-1 +- Update to 2.1.0 +- add swoole.use_shortname option in provided configuration + +* Fri Dec 29 2017 Remi Collet - 2.0.12-1 +- Update to 2.0.12 (stable) +- drop PHP 5 support + +* Thu Dec 28 2017 Remi Collet - 2.0.11-1 +- Update to 2.0.11 (stable) +- add upstream patch to fix broken build with PHP 5.x + https://github.com/swoole/swoole-src/issues/1433 + +* Thu Dec 14 2017 Remi Collet - 2.0.10-1 +- Update to 2.0.10 (stable) + +* Thu Aug 31 2017 Remi Collet - 2.0.9-1 +- Update to 2.0.9 (beta) + +* Fri Aug 4 2017 Remi Collet - 2.0.8-1 +- Update to 2.0.8 (beta) +- add devel sub-package + +* Tue Jul 18 2017 Remi Collet - 2.0.7-3 +- rebuild for PHP 7.2.0beta1 new API + +* Fri Mar 17 2017 Remi Collet - 2.0.7-2 +- fix release + +* Fri Mar 17 2017 Remi Collet - 2.0.7-1 +- Update to 2.0.7 (beta) +- rename to php-pecl-swoole2 + +* Mon Mar 6 2017 Remi Collet - 2.0.6-3 +- add upstream patch for + https://github.com/swoole/swoole-src/issues/1118 +- open https://github.com/swoole/swoole-src/issues/1119 + +* Fri Feb 24 2017 Remi Collet - 2.0.6-2 +- use --enable-ringbuffer, --enable-thread and --enable-mysqlnd + +* Tue Jan 24 2017 Remi Collet - 2.0.6-1 +- Update to 2.0.6 (beta) + +* Fri Dec 30 2016 Remi Collet - 2.0.5-1 +- Update to 2.0.5 (beta) +- raise dependency on PHP 5.5 +- add ZTS patch from https://github.com/swoole/swoole-src/pull/992 + +* Fri Dec 30 2016 Remi Collet - 2.0.4-1 +- Update to 2.0.4 (beta) +- open https://github.com/swoole/swoole-src/issues/987 - Options +- open https://github.com/swoole/swoole-src/issues/989 - ZTS build +- disable ZTS extension for now +- open https://github.com/swoole/swoole-src/issues/990 - PHP 5.4 + +* Fri Dec 23 2016 Remi Collet - 1.9.3-1 +- Update to 1.9.3 + +* Mon Dec 19 2016 Remi Collet - 1.9.2-1 +- Update to 1.9.2 + +* Wed Dec 7 2016 Remi Collet - 1.9.1-1 +- Update to 1.9.1 + +* Thu Dec 1 2016 Remi Collet - 1.9.0-2 +- rebuild with PHP 7.1.0 GA + +* Tue Nov 22 2016 Remi Collet - 1.9.0-1 +- Update to 1.9.0 + +* Tue Oct 25 2016 Remi Collet - 1.8.13-1 +- Update to 1.8.13 + +* Fri Sep 30 2016 Remi Collet - 1.8.12-1 +- Update to 1.8.12 + +* Wed Sep 14 2016 Remi Collet - 1.8.11-2 +- rebuild for PHP 7.1 new API version + +* Fri Sep 09 2016 Remi Collet - 1.8.11-1 +- Update to 1.8.11 + +* Thu Sep 01 2016 Remi Collet - 1.8.10-1 +- Update to 1.8.10 + +* Thu Sep 01 2016 Remi Collet - 1.8.9-1 +- Update to 1.8.9 + +* Thu Jul 28 2016 Remi Collet - 1.8.8-2 +- add upstream patch and add back --enable-http2 build option + +* Thu Jul 28 2016 Remi Collet - 1.8.8-1 +- Update to 1.8.8 +- drop --enable-http2 build option (broken) + open https://github.com/swoole/swoole-src/issues/787 + +* Fri Jul 01 2016 Remi Collet - 1.8.7-1 +- Update to 1.8.7 + +* Thu Jun 16 2016 Remi Collet - 1.8.6-1 +- Update to 1.8.6 +- drop --enable-async-mysql and --enable-async-httpclient + removed upstream + +* Thu May 12 2016 Remi Collet - 1.8.5-1 +- Update to 1.8.5 + +* Wed Apr 13 2016 Remi Collet - 1.8.4-1 +- Update to 1.8.4 (stable) + +* Mon Mar 21 2016 Remi Collet - 1.8.3-1 +- Update to 1.8.3 (stable) + +* Wed Mar 02 2016 Remi Collet - 1.8.2-1 +- Update to 1.8.2 (stable) +- add --enable-openssl, --enable-async-httpclient + --enable-http2 and --enable-async-redis to build options + +* Thu Feb 4 2016 Remi Collet - 1.8.1-1 +- Update to 1.8.1 (stable) + +* Wed Jan 27 2016 Remi Collet - 1.8.0-1 +- Update to 1.8.0 (stable) + +* Thu Dec 31 2015 Remi Collet - 1.7.22-2 +- Update to 1.7.22 (new sources) + +* Thu Dec 31 2015 Remi Collet - 1.7.22-1 +- Update to 1.7.22 +- add patch to fix PHP 7 build + open https://github.com/swoole/swoole-src/pull/462 + open https://github.com/swoole/swoole-src/issues/461 + +* Tue Dec 01 2015 Remi Collet - 1.7.21-1 +- Update to 1.7.21 + +* Wed Oct 21 2015 Remi Collet - 1.7.20-1 +- Update to 1.7.20 + +* Tue Oct 13 2015 Remi Collet - 1.7.19-4 +- rebuild for PHP 7.0.0RC5 new API version + +* Fri Sep 18 2015 Remi Collet - 1.7.19-3 +- F23 rebuild with rh_layout + +* Thu Sep 3 2015 Remi Collet - 1.7.19-2 +- allow build against rh-php56 (as more-php56) + +* Mon Aug 31 2015 Remi Collet - 1.7.19-1 +- Update to 1.7.19 + +* Thu Jul 23 2015 Remi Collet - 1.7.18-1 +- Update to 1.7.18 + +* Mon Jun 01 2015 Remi Collet - 1.7.17-1 +- Update to 1.7.17 + +* Fri May 08 2015 Remi Collet - 1.7.16-1 +- Update to 1.7.16 + +* Tue Apr 14 2015 Remi Collet - 1.7.15-1 +- Update to 1.7.15 + +* Thu Mar 26 2015 Remi Collet - 1.7.14-1 +- Update to 1.7.14 + +* Wed Mar 18 2015 Remi Collet - 1.7.13-1 +- Update to 1.7.13 + +* Thu Mar 12 2015 Remi Collet - 1.7.12-1 +- Update to 1.7.12 + +* Tue Mar 10 2015 Remi Collet - 1.7.11-2 +- rebuild with new sources + +* Tue Mar 10 2015 Remi Collet - 1.7.11-1 +- Update to 1.7.11 + +* Sun Feb 15 2015 Remi Collet - 1.7.10-1 +- Update to 1.7.10 +- drop runtime dependency on pear, new scriptlets + +* Wed Jan 07 2015 Remi Collet - 1.7.9-1 +- Update to 1.7.9 + +* Wed Dec 24 2014 Remi Collet - 1.7.8-1.1 +- Fedora 21 SCL mass rebuild + +* Wed Nov 26 2014 Remi Collet - 1.7.8-1 +- Update to 1.7.8 (stable) + +* Tue Oct 28 2014 Remi Collet - 1.7.7-1 +- Update to 1.7.7 (stable) + +* Fri Oct 10 2014 Remi Collet - 1.7.6-1 +- Update to 1.7.6 (stable) + +* Wed Sep 10 2014 Remi Collet - 1.7.5-1 +- Update to 1.7.5 (stable) + +* Tue Aug 26 2014 Remi Collet - 1.7.4-2 +- improve SCL build + +* Tue Jul 15 2014 Remi Collet - 1.7.4-1 +- Update to 1.7.4 (stable) + +* Fri Jun 20 2014 Remi Collet - 1.7.3-1 +- Update to 1.7.3 (stable) + +* Fri May 30 2014 Remi Collet - 1.7.2-1 +- Update to 1.7.2 (stable) +- open https://github.com/matyhtf/swoole/pull/67 (fix EL5 build) + +* Wed Apr 30 2014 Remi Collet - 1.7.1-1 +- Update to 1.7.1 (stable) + +* Wed Apr 16 2014 Remi Collet - 1.7.0-1 +- Update to 1.7.0 + +* Sun Apr 13 2014 Remi Collet - 1.6.12-1 +- Update to 1.6.12 + +* Fri Feb 28 2014 Remi Collet - 1.6.11-2 +- no --enable-async-mysql with php 5.3 + +* Thu Feb 27 2014 Remi Collet - 1.6.11-1 +- Update to 1.6.11 + +* Sun Jan 26 2014 Remi Collet - 1.6.10-1 +- Update to 1.6.10 + +* Thu Jan 02 2014 Remi Collet - 1.6.9-1 +- Update to 1.6.9 (stable) + +* Mon Dec 30 2013 Remi Collet - 1.6.8-1 +- Update to 1.6.8 (stable) + +* Tue Dec 24 2013 Remi Collet - 1.6.7-1 +- initial package, version 1.6.7 (stable) +- open https://github.com/matyhtf/swoole/issues/14 - archive +- open https://github.com/matyhtf/swoole/issues/15 - php 5.5 diff --git a/php-pecl-swoole6.spec b/php-pecl-swoole6.spec new file mode 100644 index 0000000..69e0d30 --- /dev/null +++ b/php-pecl-swoole6.spec @@ -0,0 +1,1033 @@ +# remirepo spec file for php-pecl-swoole5 +# +# Copyright (c) 2013-2024 Remi Collet +# License: CC-BY-SA-4.0 +# http://creativecommons.org/licenses/by-sa/4.0/ +# +# Please, preserve the changelog entries +# + +%if 0%{?scl:1} +%scl_package php-pecl-swoole5 +%else +%global _root_prefix %{_prefix} +%endif + +%global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} +%global pecl_name swoole +# After 20-sockets, 20-json and 20-mysqlnd +%global ini_name 40-%{pecl_name}.ini + +%bcond_without cares +%bcond_without nghttpd2 +# disabled by default to avoid dependency on Oracle Instant Client +%bcond_with oracle + +%ifarch aarch64 +%global oraclever 19.22 +%global oraclelib 19.1 +%global oracledir 19.22 +%else +%global oraclever 21.13 +%global oraclelib 21.1 +%global oracledir 21 +%endif + + +%if 0%{?fedora} || 0%{?rhel} >= 8 +%bcond_without pgsql +%else +%bcond_with pgsql +%endif + +%if 0%{?fedora} || 0%{?rhel} >= 8 +%bcond_without brotli +%else +%bcond_with brotli +%endif + +%if 0%{?fedora} || 0%{?rhel} >= 8 +%bcond_without curl +%else +%bcond_with curl +%endif + +%bcond_without nghttpd2 + +%global upstream_version 5.1.3 +#global upstream_prever RC2 +%global sources %{pecl_name}-%{upstream_version}%{?upstream_prever} +%global _configure ../%{sources}/configure + +Summary: PHP's asynchronous concurrent distributed networking framework +Name: %{?scl_prefix}php-pecl-%{pecl_name}5 +Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} +Release: 1%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} +# Extension is Apache-2.0 +# BSD-3-Clause: Hiredis +# MIT: nlohmann/json, nghttp2 +License: Apache-2.0 AND BSD-3-Clause AND MIT +URL: https://pecl.php.net/package/%{pecl_name} +Source0: https://pecl.php.net/get/%{pecl_name}-%{upstream_version}%{?upstream_prever}.tgz + +Patch0: 0001-missing-header.patch +Patch1: 0002-fix-implicit-int.patch + +BuildRequires: make +BuildRequires: %{?dtsprefix}gcc +BuildRequires: %{?dtsprefix}gcc-c++ +BuildRequires: %{?scl_prefix}php-devel >= 8.0 +BuildRequires: %{?scl_prefix}php-pear +BuildRequires: %{?scl_prefix}php-curl +BuildRequires: %{?scl_prefix}php-json +BuildRequires: %{?scl_prefix}php-sockets +BuildRequires: %{?scl_prefix}php-mysqlnd +BuildRequires: %{?scl_prefix}php-pdo +BuildRequires: pcre-devel +BuildRequires: openssl-devel >= 1.0.2 +BuildRequires: zlib-devel +%if %{with curl} +BuildRequires: libcurl-devel >= 7.56 +%endif +%if %{with cares} +BuildRequires: c-ares-devel +%endif +%if %{with brotli} +BuildRequires: brotli-devel +%endif +%if %{with pgsql} +BuildRequires: libpq-devel +%endif +%if %{with nghttpd2} +BuildRequires: libnghttp2-devel +%endif +BuildRequires: unixODBC-devel +BuildRequires: sqlite-devel +%if %{with oracle} +%ifarch aarch64 +BuildRequires: oracle-instantclient%{oraclever}-devel +# Should requires libclntsh.so.19.1()(aarch-64), but it's not provided by Oracle RPM. +Requires: libclntsh.so.%{oraclelib} +AutoReq: 0 +%else +BuildRequires: oracle-instantclient-devel >= %{oraclever} +%endif +%endif + + +Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} +Requires: %{?scl_prefix}php(api) = %{php_core_api} +Requires: %{?scl_prefix}php-curl%{?_isa} +Requires: %{?scl_prefix}php-json%{?_isa} +Requires: %{?scl_prefix}php-sockets%{?_isa} +Requires: %{?scl_prefix}php-mysqlnd%{?_isa} +Requires: %{?scl_prefix}php-pdo%{?_isa} + +Provides: %{?scl_prefix}php-%{pecl_name} = %{version} +Provides: %{?scl_prefix}php-%{pecl_name}%{?_isa} = %{version} +Provides: %{?scl_prefix}php-pecl(%{pecl_name}) = %{version} +Provides: %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} + +%if 0%{?fedora} >= 37 || 0%{?rhel} >= 10 || "%{php_version}" >= "8.2" +Obsoletes: %{?scl_prefix}php-pecl-%{pecl_name} < 5 +Provides: %{?scl_prefix}php-pecl-%{pecl_name} = %{version}-%{release} +Provides: %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa} = %{version}-%{release} +Obsoletes: %{?scl_prefix}php-pecl-%{pecl_name}2 < 5 +Provides: %{?scl_prefix}php-pecl-%{pecl_name}2 = %{version}-%{release} +Provides: %{?scl_prefix}php-pecl-%{pecl_name}2%{?_isa} = %{version}-%{release} +Obsoletes: %{?scl_prefix}php-pecl-%{pecl_name}4 < 5 +Provides: %{?scl_prefix}php-pecl-%{pecl_name}4 = %{version}-%{release} +Provides: %{?scl_prefix}php-pecl-%{pecl_name}4%{?_isa} = %{version}-%{release} +%else +# Single version can be installed +Conflicts: %{?scl_prefix}php-pecl-%{pecl_name} < 5 +Conflicts: %{?scl_prefix}php-pecl-%{pecl_name}2 < 5 +Conflicts: %{?scl_prefix}php-pecl-%{pecl_name}4 < 5 +%endif +# Only one extension can be installed (same symbols) +Conflicts: %{?scl_prefix}php-pecl-openswoole + + +%description +Event-driven asynchronous and concurrent networking engine with +high performance for PHP. +- event-driven +- coroutines +- asynchronous non-blocking +- built-in tcp/http/websocket/http2 server +- coroutine tcp/http/websocket client +- coroutine mysql client +- coroutine redis client +- coroutine read/write file system +- coroutine dns lookup +- automatically replace blocking functions to non-blocking +- support IPv4/IPv6/UnixSocket/TCP/UDP +- support SSL/TLS encrypted transmission + +Documentation: https://rawgit.com/tchiotludo/swoole-ide-helper/english/docs/ + +Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}. + + +%package devel +Summary: %{name} developer files (header) +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: %{?scl_prefix}php-devel%{?_isa} + +%description devel +These are the files needed to compile programs using %{name}. + + +%prep +%setup -q -c + +# Don't install/register tests, install examples as doc +sed \ + -e '/Makefile/s/role="doc"/role="src"/' \ + -e '/samples/s/role="doc"/role="src"/' \ + -e '/name="library/s/role="doc"/role="src"/' \ + %{?_licensedir: -e '/LICENSE/s/role="doc"/role="src"/' } \ + %{?_licensedir: -e '/COPYING/s/role="doc"/role="src"/' } \ + -i package.xml + + +cd %{sources} +%patch -P0 -p1 +%patch -P1 -p1 + +cp -p thirdparty/hiredis/COPYING hiredis-COPYING +%if %{with nghttpd2} +rm -r thirdparty/nghttp2 +%else +cp -p thirdparty/nghttp2/COPYING nghttp2-COPYING +%endif + +# Sanity check, really often broken +extver=$(sed -n '/#define SWOOLE_VERSION /{s/.* "//;s/".*$//;p}' include/swoole_version.h) +if test "x${extver}" != "x%{upstream_version}%{?upstream_prever}"; then + : Error: Upstream extension version is ${extver}, expecting %{upstream_version}%{?upstream_prever}. + exit 1 +fi +cd .. + +mkdir NTS +%if %{with_zts} +# Duplicate source tree for NTS / ZTS build +mkdir ZTS +%endif + +# Create configuration file +cat << 'EOF' | tee %{ini_name} +; Enable %{pecl_name} extension module +extension=%{pecl_name}.so + +; Configuration +;swoole.enable_coroutine = On +;swoole.enable_library = On +;swoole.enable_fiber_mock = Off +;swoole.enable_preemptive_scheduler = Off +;swoole.display_errors = On +:swoole.use_shortname = On +;swoole.unixsock_buffer_size = 8388608 +EOF + + +%build +%{?dtsenable} + +peclbuild() { +%configure \ + --enable-swoole \ + --enable-sockets \ + --enable-trace-log \ + --enable-openssl \ + --enable-mysqlnd \ +%if %{with pgsql} + --enable-swoole-pgsql \ +%endif +%if %{with curl} + --enable-swoole-curl \ +%endif + --enable-swoole-coro-time \ +%if %{with cares} + --enable-cares \ +%endif +%if %{with brotli} + --enable-brotli \ +%else + --disable-brotli \ +%endif +%if %{with nghttpd2} + --with-nghttp2-dir=%{_root_prefix} \ +%endif +%if %{with oracle} + --with-swoole-oracle=instantclient,%{_root_prefix}/lib/oracle/%{oracledir}/client64/lib \ +%endif + --with-swoole-odbc=unixodbc,%{_root_prefix} \ + --enable-swoole-sqlite \ + --with-libdir=%{_lib} \ + --with-php-config=$1 + +make %{?_smp_mflags} +} + +cd %{sources} +%{__phpize} + +cd ../NTS +peclbuild %{__phpconfig} + +%if %{with_zts} +cd ../ZTS +peclbuild %{__ztsphpconfig} +%endif + + +%install +%{?dtsenable} + +make -C NTS \ + install INSTALL_ROOT=%{buildroot} + +# install config file +install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} + +# Install XML package description +install -D -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml + +%if %{with_zts} +make -C ZTS \ + install INSTALL_ROOT=%{buildroot} + +install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} +%endif + +# Test and Documentation +for i in $(grep 'role="test"' package.xml | sed -e 's/^.*name="//;s/".*$//') +do install -Dpm 644 %{sources}/$i %{buildroot}%{pecl_testdir}/%{pecl_name}/$i +done +for i in $(grep 'role="doc"' package.xml | sed -e 's/^.*name="//;s/".*$//') +do install -Dpm 644 %{sources}/$i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i +done + +# code not compatible with Python 3 +rm %{buildroot}%{pecl_testdir}/%{pecl_name}/tests/swoole_process/echo.py +rm %{buildroot}%{pecl_docdir}/%{pecl_name}/examples/process/echo.py + + +%if 0%{?fedora} < 24 && 0%{?rhel} < 8 +# when pear installed alone, after us +%triggerin -- %{?scl_prefix}php-pear +if [ -x %{__pecl} ] ; then + %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : +fi + +# posttrans as pear can be installed after us +%posttrans +if [ -x %{__pecl} ] ; then + %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : +fi + +%postun +if [ $1 -eq 0 -a -x %{__pecl} ] ; then + %{pecl_uninstall} %{pecl_name} >/dev/null || : +fi +%endif + + +%check +OPT="--no-php-ini" +[ -f %{php_extdir}/curl.so ] && OPT="$OPT -d extension=curl" +[ -f %{php_extdir}/sockets.so ] && OPT="$OPT -d extension=sockets" +[ -f %{php_extdir}/mysqlnd.so ] && OPT="$OPT -d extension=mysqlnd" +[ -f %{php_extdir}/pdo.so ] && OPT="$OPT -d extension=pdo" + +cd NTS +: Minimal load test for NTS extension +%{__php} $OPT \ + --define extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \ + --modules | grep '^%{pecl_name}$' + +%if %{with_zts} +cd ../ZTS +: Minimal load test for ZTS extension +%{__ztsphp} $OPT \ + --define extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \ + --modules | grep '^%{pecl_name}$' +%endif + + +%files +%{?_licensedir:%license %{sources}/LICENSE} +%{?_licensedir:%license %{sources}/*-COPYING} +%{!?_licensedir:%{pecl_docdir}/%{pecl_name}/LICENSE} +%{!?_licensedir:%{pecl_docdir}/%{pecl_name}/thirdparty/*/COPYING} +%doc %{pecl_docdir}/%{pecl_name}/*md +%{pecl_xmldir}/%{name}.xml + +%config(noreplace) %{php_inidir}/%{ini_name} +%{php_extdir}/%{pecl_name}.so + +%if %{with_zts} +%config(noreplace) %{php_ztsinidir}/%{ini_name} +%{php_ztsextdir}/%{pecl_name}.so +%endif + + +%files devel +%doc %{pecl_testdir}/%{pecl_name} +%doc %{pecl_docdir}/%{pecl_name}/core-tests +%doc %{pecl_docdir}/%{pecl_name}/docs +%doc %{pecl_docdir}/%{pecl_name}/examples +%doc %{pecl_docdir}/%{pecl_name}/gdbinit +%doc %{pecl_docdir}/%{pecl_name}/thirdparty +%{php_incldir}/ext/%{pecl_name} + +%if %{with_zts} +%{php_ztsincldir}/ext/%{pecl_name} +%endif + + +%changelog +* Thu Jun 6 2024 Remi Collet - 5.1.3-1 +- update to 5.1.3 +- fix build warnings (errors with GCC 14) using patch from + https://github.com/swoole/swoole-src/pull/5363 + +* Mon May 13 2024 Remi Collet - 5.1.2-2 +- refresh sources +- drop patch merged upstream + +* Wed Jan 24 2024 Remi Collet - 5.1.2-1 +- update to 5.1.2 +- fix out of sources tree build using patch from + https://github.com/swoole/swoole-src/pull/5239 + +* Mon Nov 27 2023 Remi Collet - 5.1.1-1 +- update to 5.1.1 + +* Fri Sep 29 2023 Remi Collet - 5.1.0-1 +- update to 5.1.0 +- add dependency on pdo extension +- new coroutine_odbc enabled +- new coroutine_sqlite enabled +- new coroutine_oracle disabled + +* Mon Sep 4 2023 Remi Collet - 5.0.3-2 +- add upstream patch for PHP 8.3 + +* Wed Apr 26 2023 Remi Collet - 5.0.3-1 +- update to 5.0.3 +- use system libnghttp2 +- drop patch merged upstream +- fix use of system headers with system libnghttp2 using patch from + https://github.com/swoole/swoole-src/pull/5038 +- build out of sources tree + +* Fri Feb 17 2023 Remi Collet - 5.0.2-2 +- fix GCC 13 build using patch from + https://github.com/swoole/swoole-src/pull/4985 + +* Mon Feb 6 2023 Remi Collet - 5.0.2-1 +- update to 5.0.2 + +* Mon Nov 7 2022 Remi Collet - 5.0.1-1 +- update to 5.0.1 + +* Tue Aug 2 2022 Remi Collet - 5.0.0-1 +- update to 5.0.0 +- rename to php-pecl-swoole5 +- raise dependency on PHP 8.0 +- add postgresql support on Fedora, EL-8 and EL-9 +- remove curl support on EL-7 + +* Tue Jul 12 2022 Remi Collet - 4.8.11-1 +- update to 4.8.11 + +* Wed Jun 22 2022 Remi Collet - 4.8.10-1 +- update to 4.8.10 + +* Mon Apr 18 2022 Remi Collet - 4.8.9-1 +- update to 4.8.9 +- add workaround to build failure reported as + https://github.com/swoole/swoole-src/issues/4693 + +* Wed Mar 16 2022 Remi Collet - 4.8.8-1 +- update to 4.8.8 + +* Thu Feb 24 2022 Remi Collet - 4.8.7-1 +- update to 4.8.7 + +* Thu Jan 13 2022 Remi Collet - 4.8.6-1 +- update to 4.8.6 + +* Sat Dec 25 2021 Remi Collet - 4.8.5-1 +- update to 4.8.5 + +* Sat Dec 18 2021 Remi Collet - 4.8.4-1 +- update to 4.8.4 + +* Wed Dec 1 2021 Remi Collet - 4.8.3-1 +- update to 4.8.3 + +* Thu Nov 18 2021 Remi Collet - 4.8.2-1 +- update to 4.8.2 + +* Sat Oct 30 2021 Remi Collet - 4.8.1-1 +- update to 4.8.1 +- open https://github.com/swoole/swoole-src/pull/4457 + add LICENSE file for thirdparty/nlohmann + +* Fri Oct 15 2021 Remi Collet - 4.8.0-1 +- update to 4.8.0 + +* Wed Sep 01 2021 Remi Collet - 4.7.1-2 +- rebuild for 8.1.0RC1 + +* Thu Aug 26 2021 Remi Collet - 4.7.1-1 +- update to 4.7.1 +- drop patch merged upstream + +* Fri Jul 23 2021 Remi Collet - 4.7.0-2 +- add patch for PHP 8.1.0beta1 from + https://github.com/swoole/swoole-src/pull/4335 + +* Mon Jul 19 2021 Remi Collet - 4.7.0-1 +- update to 4.7.0 + +* Sun May 16 2021 Remi Collet - 4.6.7-1 +- update to 4.6.7 + +* Thu Apr 22 2021 Remi Collet - 4.6.6-1 +- update to 4.6.6 + +* Fri Apr 9 2021 Remi Collet - 4.6.5-1 +- update to 4.6.5 + +* Thu Mar 11 2021 Remi Collet - 4.6.4-1 +- update to 4.6.4 + +* Tue Feb 9 2021 Remi Collet - 4.6.3-1 +- update to 4.6.3 + +* Mon Jan 25 2021 Remi Collet - 4.6.2-1 +- update to 4.6.2 + +* Mon Jan 11 2021 Remi Collet - 4.6.1-1 +- update to 4.6.1 + +* Wed Jan 6 2021 Remi Collet - 4.6.0-1 +- update to 4.6.0 +- enable curl support +- raise dependency on PHP 7.2 + +* Wed Dec 23 2020 Remi Collet - 4.5.10-1 +- update to 4.5.10 + +* Fri Nov 27 2020 Remi Collet - 4.5.9-1 +- update to 4.5.9 + +* Mon Nov 23 2020 Remi Collet - 4.5.8-2 +- add upstream patch for PHP 8 + +* Sat Nov 21 2020 Remi Collet - 4.5.8-1 +- update to 4.5.8 + +* Mon Nov 9 2020 Remi Collet - 4.5.7-1 +- update to 4.5.7 + +* Fri Oct 30 2020 Remi Collet - 4.5.6-1 +- update to 4.5.6 +- raise dependency on openssl 1.0.2 (drop EL-6 support) +- add dependency on json extension + +* Thu Oct 15 2020 Remi Collet - 4.5.5-1 +- update to 4.5.5 +- drop patches merged upstream + +* Wed Sep 30 2020 Remi Collet - 4.5.4-3 +- rebuild for PHP 8.0.0RC1 +- add patch from https://github.com/swoole/swoole-src/pull/3713 + +* Sun Sep 20 2020 Remi Collet - 4.5.4-2 +- add upstream patch for EL-6 and for PHP 8 +- add patch for EL-6 from + https://github.com/swoole/swoole-src/pull/3686 + +* Sun Sep 20 2020 Remi Collet - 4.5.4-1 +- update to 4.5.4 +- open https://github.com/swoole/swoole-src/issues/3681 broken build on EL-6 +- open https://github.com/swoole/swoole-src/issues/3683 broken build on PHP 8 + +* Sun Aug 30 2020 Remi Collet - 4.5.3-1 +- update to 4.5.3 + +* Thu May 28 2020 Remi Collet - 4.5.2-1 +- update to 4.5.2 + +* Mon May 11 2020 Remi Collet - 4.5.1-1 +- update to 4.5.1 + +* Mon Apr 27 2020 Remi Collet - 4.5.0-2 +- add upstream patch to fix 32-bit and old GCC builds + +* Mon Apr 27 2020 Remi Collet - 4.5.0-1 +- update to 4.5.0 +- open https://github.com/swoole/swoole-src/issues/3276 + broken 32-bit build + +* Sun Apr 26 2020 Remi Collet - 4.4.18-1 +- update to 4.4.18 +- open https://github.com/swoole/swoole-src/issues/3274 + missing libstdc++ in link + +* Wed Apr 1 2020 Remi Collet - 4.4.17-1 +- update to 4.4.17 + +* Wed Feb 19 2020 Remi Collet - 4.4.16-1 +- update to 4.4.16 + +* Wed Jan 15 2020 Remi Collet - 4.4.15-1 +- update to 4.4.15 + +* Thu Dec 26 2019 Remi Collet - 4.4.14-1 +- update to 4.4.14 + +* Wed Dec 18 2019 Remi Collet - 4.4.13-1 +- update to 4.4.13 + +* Wed Dec 11 2019 Remi Collet - 4.4.13~RC2-1 +- update to 4.4.13RC2 + +* Thu Dec 5 2019 Remi Collet - 4.4.13~RC1-1 +- update to 4.4.13RC1 + +* Mon Nov 4 2019 Remi Collet - 4.4.12-1 +- update to 4.4.12 + +* Thu Oct 31 2019 Remi Collet - 4.4.10-1 +- update to 4.4.10 + +* Wed Oct 30 2019 Remi Collet - 4.4.9-1 +- update to 4.4.9 +- open https://github.com/swoole/swoole-src/issues/2925 + undefined symbol: BrotliDecoderDecompress + +* Tue Oct 15 2019 Remi Collet - 4.4.8-1 +- update to 4.4.8 + +* Wed Sep 25 2019 Remi Collet - 4.4.7-1 +- update to 4.4.7 + +* Thu Sep 19 2019 Remi Collet - 4.4.6-1 +- update to 4.4.6 + +* Tue Sep 03 2019 Remi Collet - 4.4.5-2 +- rebuild for 7.4.0RC1 + +* Fri Aug 30 2019 Remi Collet - 4.4.5-1 +- update to 4.4.5 + +* Fri Aug 23 2019 Remi Collet - 4.4.4-2 +- drop echo.py which is python 2 only + +* Sun Aug 18 2019 Remi Collet - 4.4.4-1 +- update to 4.4.4 + +* Sat Aug 3 2019 Remi Collet - 4.4.3-1 +- update to 4.4.3 + +* Fri Jul 26 2019 Remi Collet - 4.4.2-1 +- update to 4.4.2 +- drop patch merged upstream + +* Tue Jul 23 2019 Remi Collet - 4.4.1-2 +- rebuild for 7.4.0beta1 +- add patch from https://github.com/swoole/swoole-src/pull/2707 + +* Tue Jul 16 2019 Remi Collet - 4.4.1-1 +- update to 4.4.1 + +* Sun Jul 7 2019 Remi Collet - 4.4.0-1 +- update to 4.4.0 +- raise dependency on PHP 7.1 +- drop `Serialize` module +- drop `PostgreSQL` module + +* Fri Jun 14 2019 Remi Collet - 4.3.5-1 +- update to 4.3.5 + +* Fri May 17 2019 Remi Collet - 4.3.4-1 +- update to 4.3.4 + +* Tue Apr 23 2019 Remi Collet - 4.3.3-1 +- update to 4.3.3 + +* Mon Apr 15 2019 Remi Collet - 4.3.2-1 +- update to 4.3.2 + +* Wed Mar 13 2019 Remi Collet - 4.3.1-1 +- update to 4.3.1 + +* Mon Mar 11 2019 Remi Collet - 4.3.0-2 +- test build for upstream patch + +* Thu Mar 7 2019 Remi Collet - 4.3.0-1 +- update to 4.3.0 +- drop dependencies on libnghttp2 and c-ares +- open https://github.com/swoole/swoole-src/issues/2411 32-bit broken +- remove the --enable-trace-log build option on 32-bit + +* Mon Feb 4 2019 Remi Collet - 4.2.13-1 +- update to 4.2.13 + +* Sun Jan 6 2019 Remi Collet - 4.2.12-1 +- update to 4.2.12 +- use --enable-cares build option +- swoole.aio_thread_num configuration option removed + +* Fri Dec 28 2018 Remi Collet - 4.2.11-1 +- update to 4.2.11 + +* Thu Dec 20 2018 Remi Collet - 4.2.10-1 +- update to 4.2.10 + +* Mon Nov 26 2018 Remi Collet - 4.2.9-1 +- update to 4.2.9 + +* Mon Nov 19 2018 Remi Collet - 4.2.8-1 +- update to 4.2.8 + +* Sat Nov 10 2018 Remi Collet - 4.2.7-1 +- update to 4.2.7 + +* Mon Nov 5 2018 Remi Collet - 4.2.6-1 +- update to 4.2.6 +- use hiredis bundled library +- open https://github.com/swoole/swoole-src/issues/2089 borken with PHP 7.3 +- open https://github.com/php/php-src/pull/3652 fix for C++ + +* Sun Oct 28 2018 Remi Collet - 4.2.5-1 +- update to 4.2.5 + +* Fri Oct 26 2018 Remi Collet - 4.2.4-1 +- update to 4.2.4 + +* Tue Oct 16 2018 Remi Collet - 4.2.3-1 +- update to 4.2.3 + +* Mon Oct 15 2018 Remi Collet - 4.2.2-1 +- update to 4.2.2 +- open https://github.com/swoole/swoole-src/issues/2038 bad version + +* Wed Sep 19 2018 Remi Collet - 4.2.1-1 +- update to 4.2.1 + +* Tue Sep 18 2018 Remi Collet - 4.2.0-1 +- update to 4.2.0 +- open https://github.com/swoole/swoole-src/issues/1982 + undefined symbol: zif_time_nanosleep +- open https://github.com/swoole/swoole-src/issues/1983 + undefined symbol: php_stream_mode_sanitize_fdopen_fopencookie +- open https://github.com/swoole/swoole-src/issues/1986 + ZTS build is broken: undefined symbol: _Z14virtual_unlinkPKc +- open https://github.com/swoole/swoole-src/pull/1985 + zif_handler to save function pointer + +* Wed Sep 5 2018 Remi Collet - 4.1.2-1 +- update to 4.1.2 + +* Fri Aug 31 2018 Remi Collet - 4.1.1-1 +- update to 4.1.1 (no change) + +* Fri Aug 31 2018 Remi Collet - 4.1.0-1 +- update to 4.1.0 +- add dependency on brotli library (Fedora) +- open https://github.com/swoole/swoole-src/issues/1931 missing files + +* Thu Aug 16 2018 Remi Collet - 4.0.4-2 +- rebuild for 7.3.0beta2 new ABI + +* Sat Aug 11 2018 Remi Collet - 4.0.4-1 +- update to 4.0.4 + +* Fri Jul 20 2018 Remi Collet - 4.0.3-1 +- update to 4.0.3 + +* Wed Jul 18 2018 Remi Collet - 4.0.2-2 +- rebuild for 7.3.0alpha4 new ABI + +* Fri Jul 13 2018 Remi Collet - 4.0.2-1 +- update to 4.0.2 + +* Fri Jun 29 2018 Remi Collet - 4.0.1-2 +- osboletes old versions on F29+, EL-8+ and PHP 7.3+ + +* Thu Jun 21 2018 Remi Collet - 4.0.1-1 +- update to 4.0.1 + +* Thu Jun 14 2018 Remi Collet - 4.0.0-1 +- update to 4.0.0 +- rename to php-pecl-swoole4 +- raise dependency on PHP 7.1 +- add patch to ensure g++ is used a linktime from + https://github.com/swoole/swoole-src/pull/1717 + +* Wed May 23 2018 Remi Collet - 2.2.0-1 +- update to 2.2.0 + +* Mon Apr 16 2018 Remi Collet - 2.1.3-1 +- update to 2.1.3 + +* Tue Apr 10 2018 Remi Collet - 2.1.2-1 +- update to 2.1.2 +- add PostgreSQL coroutine client on Fedora 24+ +- enable trace log +- open https://github.com/swoole/swoole-src/issues/1558 + broken build with PHP 7.0 + +* Wed Mar 7 2018 Remi Collet - 2.1.1-1 +- update to 2.1.1 + +* Fri Feb 9 2018 Remi Collet - 2.1.0-1 +- Update to 2.1.0 +- add swoole.use_shortname option in provided configuration + +* Fri Dec 29 2017 Remi Collet - 2.0.12-1 +- Update to 2.0.12 (stable) +- drop PHP 5 support + +* Thu Dec 28 2017 Remi Collet - 2.0.11-1 +- Update to 2.0.11 (stable) +- add upstream patch to fix broken build with PHP 5.x + https://github.com/swoole/swoole-src/issues/1433 + +* Thu Dec 14 2017 Remi Collet - 2.0.10-1 +- Update to 2.0.10 (stable) + +* Thu Aug 31 2017 Remi Collet - 2.0.9-1 +- Update to 2.0.9 (beta) + +* Fri Aug 4 2017 Remi Collet - 2.0.8-1 +- Update to 2.0.8 (beta) +- add devel sub-package + +* Tue Jul 18 2017 Remi Collet - 2.0.7-3 +- rebuild for PHP 7.2.0beta1 new API + +* Fri Mar 17 2017 Remi Collet - 2.0.7-2 +- fix release + +* Fri Mar 17 2017 Remi Collet - 2.0.7-1 +- Update to 2.0.7 (beta) +- rename to php-pecl-swoole2 + +* Mon Mar 6 2017 Remi Collet - 2.0.6-3 +- add upstream patch for + https://github.com/swoole/swoole-src/issues/1118 +- open https://github.com/swoole/swoole-src/issues/1119 + +* Fri Feb 24 2017 Remi Collet - 2.0.6-2 +- use --enable-ringbuffer, --enable-thread and --enable-mysqlnd + +* Tue Jan 24 2017 Remi Collet - 2.0.6-1 +- Update to 2.0.6 (beta) + +* Fri Dec 30 2016 Remi Collet - 2.0.5-1 +- Update to 2.0.5 (beta) +- raise dependency on PHP 5.5 +- add ZTS patch from https://github.com/swoole/swoole-src/pull/992 + +* Fri Dec 30 2016 Remi Collet - 2.0.4-1 +- Update to 2.0.4 (beta) +- open https://github.com/swoole/swoole-src/issues/987 - Options +- open https://github.com/swoole/swoole-src/issues/989 - ZTS build +- disable ZTS extension for now +- open https://github.com/swoole/swoole-src/issues/990 - PHP 5.4 + +* Fri Dec 23 2016 Remi Collet - 1.9.3-1 +- Update to 1.9.3 + +* Mon Dec 19 2016 Remi Collet - 1.9.2-1 +- Update to 1.9.2 + +* Wed Dec 7 2016 Remi Collet - 1.9.1-1 +- Update to 1.9.1 + +* Thu Dec 1 2016 Remi Collet - 1.9.0-2 +- rebuild with PHP 7.1.0 GA + +* Tue Nov 22 2016 Remi Collet - 1.9.0-1 +- Update to 1.9.0 + +* Tue Oct 25 2016 Remi Collet - 1.8.13-1 +- Update to 1.8.13 + +* Fri Sep 30 2016 Remi Collet - 1.8.12-1 +- Update to 1.8.12 + +* Wed Sep 14 2016 Remi Collet - 1.8.11-2 +- rebuild for PHP 7.1 new API version + +* Fri Sep 09 2016 Remi Collet - 1.8.11-1 +- Update to 1.8.11 + +* Thu Sep 01 2016 Remi Collet - 1.8.10-1 +- Update to 1.8.10 + +* Thu Sep 01 2016 Remi Collet - 1.8.9-1 +- Update to 1.8.9 + +* Thu Jul 28 2016 Remi Collet - 1.8.8-2 +- add upstream patch and add back --enable-http2 build option + +* Thu Jul 28 2016 Remi Collet - 1.8.8-1 +- Update to 1.8.8 +- drop --enable-http2 build option (broken) + open https://github.com/swoole/swoole-src/issues/787 + +* Fri Jul 01 2016 Remi Collet - 1.8.7-1 +- Update to 1.8.7 + +* Thu Jun 16 2016 Remi Collet - 1.8.6-1 +- Update to 1.8.6 +- drop --enable-async-mysql and --enable-async-httpclient + removed upstream + +* Thu May 12 2016 Remi Collet - 1.8.5-1 +- Update to 1.8.5 + +* Wed Apr 13 2016 Remi Collet - 1.8.4-1 +- Update to 1.8.4 (stable) + +* Mon Mar 21 2016 Remi Collet - 1.8.3-1 +- Update to 1.8.3 (stable) + +* Wed Mar 02 2016 Remi Collet - 1.8.2-1 +- Update to 1.8.2 (stable) +- add --enable-openssl, --enable-async-httpclient + --enable-http2 and --enable-async-redis to build options + +* Thu Feb 4 2016 Remi Collet - 1.8.1-1 +- Update to 1.8.1 (stable) + +* Wed Jan 27 2016 Remi Collet - 1.8.0-1 +- Update to 1.8.0 (stable) + +* Thu Dec 31 2015 Remi Collet - 1.7.22-2 +- Update to 1.7.22 (new sources) + +* Thu Dec 31 2015 Remi Collet - 1.7.22-1 +- Update to 1.7.22 +- add patch to fix PHP 7 build + open https://github.com/swoole/swoole-src/pull/462 + open https://github.com/swoole/swoole-src/issues/461 + +* Tue Dec 01 2015 Remi Collet - 1.7.21-1 +- Update to 1.7.21 + +* Wed Oct 21 2015 Remi Collet - 1.7.20-1 +- Update to 1.7.20 + +* Tue Oct 13 2015 Remi Collet - 1.7.19-4 +- rebuild for PHP 7.0.0RC5 new API version + +* Fri Sep 18 2015 Remi Collet - 1.7.19-3 +- F23 rebuild with rh_layout + +* Thu Sep 3 2015 Remi Collet - 1.7.19-2 +- allow build against rh-php56 (as more-php56) + +* Mon Aug 31 2015 Remi Collet - 1.7.19-1 +- Update to 1.7.19 + +* Thu Jul 23 2015 Remi Collet - 1.7.18-1 +- Update to 1.7.18 + +* Mon Jun 01 2015 Remi Collet - 1.7.17-1 +- Update to 1.7.17 + +* Fri May 08 2015 Remi Collet - 1.7.16-1 +- Update to 1.7.16 + +* Tue Apr 14 2015 Remi Collet - 1.7.15-1 +- Update to 1.7.15 + +* Thu Mar 26 2015 Remi Collet - 1.7.14-1 +- Update to 1.7.14 + +* Wed Mar 18 2015 Remi Collet - 1.7.13-1 +- Update to 1.7.13 + +* Thu Mar 12 2015 Remi Collet - 1.7.12-1 +- Update to 1.7.12 + +* Tue Mar 10 2015 Remi Collet - 1.7.11-2 +- rebuild with new sources + +* Tue Mar 10 2015 Remi Collet - 1.7.11-1 +- Update to 1.7.11 + +* Sun Feb 15 2015 Remi Collet - 1.7.10-1 +- Update to 1.7.10 +- drop runtime dependency on pear, new scriptlets + +* Wed Jan 07 2015 Remi Collet - 1.7.9-1 +- Update to 1.7.9 + +* Wed Dec 24 2014 Remi Collet - 1.7.8-1.1 +- Fedora 21 SCL mass rebuild + +* Wed Nov 26 2014 Remi Collet - 1.7.8-1 +- Update to 1.7.8 (stable) + +* Tue Oct 28 2014 Remi Collet - 1.7.7-1 +- Update to 1.7.7 (stable) + +* Fri Oct 10 2014 Remi Collet - 1.7.6-1 +- Update to 1.7.6 (stable) + +* Wed Sep 10 2014 Remi Collet - 1.7.5-1 +- Update to 1.7.5 (stable) + +* Tue Aug 26 2014 Remi Collet - 1.7.4-2 +- improve SCL build + +* Tue Jul 15 2014 Remi Collet - 1.7.4-1 +- Update to 1.7.4 (stable) + +* Fri Jun 20 2014 Remi Collet - 1.7.3-1 +- Update to 1.7.3 (stable) + +* Fri May 30 2014 Remi Collet - 1.7.2-1 +- Update to 1.7.2 (stable) +- open https://github.com/matyhtf/swoole/pull/67 (fix EL5 build) + +* Wed Apr 30 2014 Remi Collet - 1.7.1-1 +- Update to 1.7.1 (stable) + +* Wed Apr 16 2014 Remi Collet - 1.7.0-1 +- Update to 1.7.0 + +* Sun Apr 13 2014 Remi Collet - 1.6.12-1 +- Update to 1.6.12 + +* Fri Feb 28 2014 Remi Collet - 1.6.11-2 +- no --enable-async-mysql with php 5.3 + +* Thu Feb 27 2014 Remi Collet - 1.6.11-1 +- Update to 1.6.11 + +* Sun Jan 26 2014 Remi Collet - 1.6.10-1 +- Update to 1.6.10 + +* Thu Jan 02 2014 Remi Collet - 1.6.9-1 +- Update to 1.6.9 (stable) + +* Mon Dec 30 2013 Remi Collet - 1.6.8-1 +- Update to 1.6.8 (stable) + +* Tue Dec 24 2013 Remi Collet - 1.6.7-1 +- initial package, version 1.6.7 (stable) +- open https://github.com/matyhtf/swoole/issues/14 - archive +- open https://github.com/matyhtf/swoole/issues/15 - php 5.5 -- cgit