Depends a bit how you manage your different scenes.
Generally you want to have one event loop, where you poll all the events. From there you can pass the event on to different places.
For example if you use some sort of message bus, you could then hand of all the events to that and the bus will take care of pushing it to the right subscribers.