All Questions
Tagged with event-loop ruby
2 questions
13
votes
2
answers
4k
views
Why is an event loop needed for Asynchronous I/O
I've done lots of development in C#/.Net, and the asynchronous story has always been there from day one (admittedly the API's have changed significantly over the years from begin/end to events, to ...
1
vote
2
answers
899
views
Ruby C Extension: run an event loop concurrently
I'm implementing a simple windowing library as a Ruby C extension. Windows have a handle_events! method that enters their native event loop.
The problem is that I want one event loop per window and ...