https://bugzilla.redhat.com/show_bug.cgi?id=1414826 Bug ID: 1414826 Summary: Review Request: php-react-event-loop - Event loop abstraction layer that libraries can use for evented I/O Product: Fedora Version: rawhide Component: Package Review Severity: medium Priority: medium Assignee: nobody@xxxxxxxxxxxxxxxxx Reporter: shawn@xxxxxxxx QA Contact: extras-qa@xxxxxxxxxxxxxxxxx CC: package-review@xxxxxxxxxxxxxxxxxxxxxxx Spec URL: https://raw.githubusercontent.com/siwinski/rpms/dfb3294ea0243eb762149e394216babf45af9fdd/php-react-event-loop/php-react-event-loop.spec SRPM URL: https://siwinski.fedorapeople.org/SRPMS/php-react-event-loop-0.4.2-1.fc25.src.rpm Description: Event loop abstraction layer that libraries can use for evented I/O. In order for async based libraries to be interoperable, they need to use the same event loop. This component provides a common LoopInterface that any library can target. This allows them to be used in the same loop, with one single run call that is controlled by the user. In addition to the interface there are some implementations provided: * StreamSelectLoop: This is the only implementation which works out of the box with PHP. It does a simple select system call. It's not the most performant of loops, but still does the job quite well. * LibEventLoop: This uses the libevent pecl extension. libevent itself supports a number of system-specific backends (epoll, kqueue). * LibEvLoop: This uses the libev pecl extension (github). It supports the same backends as libevent. * ExtEventLoop: This uses the event pecl extension. It supports the same backends as libevent. All of the loops support these features: * File descriptor polling * One-off timers * Periodic timers * Deferred execution of callbacks Fedora Account System Username: siwinski -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component _______________________________________________ package-review mailing list -- package-review@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to package-review-leave@xxxxxxxxxxxxxxxxxxxxxxx