I'm trying to understand reactive programming and how the event loop works. As long as I can understand when a new HTTP request is sent to the app, this request splits into events. And every event is handled by this event loop and for every event a callback is registered. On complete of this event, the result is returned to the request. But how many threads handles this request and how many threads are in this event loop.