2 repository-uri
Runs a platform-specific main loop that polls for system events and dispatches them to user callbacks.
Distinct from Event Loop Initializers: Distinct from Event Loop Initializers: covers the full polling and dispatch cycle, not just initialization.
Explore 2 awesome GitHub repositories matching operating systems & systems programming · Platform Event Loop Pumps. Refine with filters or upvote what's useful.
Window handling library in pure Rust
Runs the platform-specific main loop that polls for system events and dispatches them to user callbacks.
Twisted is an event-driven networking engine for Python that provides a framework for building asynchronous network applications. At its core, it uses a reactor-based event loop to drive all input and output, dispatching callbacks in a single thread without blocking. The library implements a deferred promise chain for composing asynchronous logic, along with a protocol and factory pattern that separates connection state management from protocol handling, enabling reusable handlers for different network protocols. The framework supports multiple event loops across platforms, including select,
Runs network code on select, poll, epoll, kqueue, IOCP, or GUI event loops for cross-platform compatibility.