├── LICENSE ├── SECURITY.md ├── composer.json └── src ├── EventLoop.php └── EventLoop ├── CallbackType.php ├── Driver.php ├── Driver ├── EvDriver.php ├── EventDriver.php ├── StreamSelectDriver.php ├── TracingDriver.php └── UvDriver.php ├── DriverFactory.php ├── FiberLocal.php ├── Internal ├── AbstractDriver.php ├── ClosureHelper.php ├── DeferCallback.php ├── DriverCallback.php ├── DriverSuspension.php ├── SignalCallback.php ├── StreamCallback.php ├── StreamReadableCallback.php ├── StreamWritableCallback.php ├── TimerCallback.php └── TimerQueue.php ├── InvalidCallbackError.php ├── Suspension.php ├── UncaughtThrowable.php └── UnsupportedFeatureException.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/LICENSE -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/composer.json -------------------------------------------------------------------------------- /src/EventLoop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop.php -------------------------------------------------------------------------------- /src/EventLoop/CallbackType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/CallbackType.php -------------------------------------------------------------------------------- /src/EventLoop/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Driver.php -------------------------------------------------------------------------------- /src/EventLoop/Driver/EvDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Driver/EvDriver.php -------------------------------------------------------------------------------- /src/EventLoop/Driver/EventDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Driver/EventDriver.php -------------------------------------------------------------------------------- /src/EventLoop/Driver/StreamSelectDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Driver/StreamSelectDriver.php -------------------------------------------------------------------------------- /src/EventLoop/Driver/TracingDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Driver/TracingDriver.php -------------------------------------------------------------------------------- /src/EventLoop/Driver/UvDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Driver/UvDriver.php -------------------------------------------------------------------------------- /src/EventLoop/DriverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/DriverFactory.php -------------------------------------------------------------------------------- /src/EventLoop/FiberLocal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/FiberLocal.php -------------------------------------------------------------------------------- /src/EventLoop/Internal/AbstractDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Internal/AbstractDriver.php -------------------------------------------------------------------------------- /src/EventLoop/Internal/ClosureHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Internal/ClosureHelper.php -------------------------------------------------------------------------------- /src/EventLoop/Internal/DeferCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Internal/DeferCallback.php -------------------------------------------------------------------------------- /src/EventLoop/Internal/DriverCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Internal/DriverCallback.php -------------------------------------------------------------------------------- /src/EventLoop/Internal/DriverSuspension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Internal/DriverSuspension.php -------------------------------------------------------------------------------- /src/EventLoop/Internal/SignalCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Internal/SignalCallback.php -------------------------------------------------------------------------------- /src/EventLoop/Internal/StreamCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Internal/StreamCallback.php -------------------------------------------------------------------------------- /src/EventLoop/Internal/StreamReadableCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Internal/StreamReadableCallback.php -------------------------------------------------------------------------------- /src/EventLoop/Internal/StreamWritableCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Internal/StreamWritableCallback.php -------------------------------------------------------------------------------- /src/EventLoop/Internal/TimerCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Internal/TimerCallback.php -------------------------------------------------------------------------------- /src/EventLoop/Internal/TimerQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Internal/TimerQueue.php -------------------------------------------------------------------------------- /src/EventLoop/InvalidCallbackError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/InvalidCallbackError.php -------------------------------------------------------------------------------- /src/EventLoop/Suspension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/Suspension.php -------------------------------------------------------------------------------- /src/EventLoop/UncaughtThrowable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/UncaughtThrowable.php -------------------------------------------------------------------------------- /src/EventLoop/UnsupportedFeatureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltphp/event-loop/HEAD/src/EventLoop/UnsupportedFeatureException.php --------------------------------------------------------------------------------