Tagged Questions

3
votes
3answers
312 views

Is event listener using CPU time

Maybe this is a dumb question, but do event listeners use CPU cycles like a timer, or are they inactive until the event is fired? Is it language specific, or do all languages handle this basically ...
2
votes
2answers
94 views

Why use event listeners over function calls?

I've been studying event listeners lately and I think I've finally gotten them down. Basically, they are functions that are called on another object's method. My question is, why create an event ...
1
vote
1answer
35 views

JavaScript - How to detect the value of “useCapture” from an event object?

JavaScript - How to detect the value of useCapture from an event object? I made a function that removes an event listener after firing once or any number of times. This is what I have: /*jslint ...
1
vote
1answer
48 views

Is it bad practice to use the same event-listener callback for multiple Event types?

This might be more of a subjective question, but is it generally best practice to have one dedicated method per event-types that you add an event-listener? Such as: ...
1
vote
3answers
93 views

List of methods associated with specific event listeners?

Im working on some beginner stuff in java and Im using MouseMotionListener to get input from the mouse in one of my classes. I know of the ones required already (mouseDragged, mouseMoved, etc...) I ...
1
vote
1answer
437 views

signals and slots vs. events and event listeners

Straight to the point! How do signals/slots and event/event-listeners compare? Are there any pros and cons? Which one should I consider and why? Thanks in advance!
0
votes
1answer
27 views

Event that fires when a url is confirmed as valid

Alright dudes... I have a problem that is looking for an answer more specific than the seemingly obvious solution. I have a block of code that I want to execute directly after a url is known to be ...
0
votes
1answer
289 views

Event notifications between iframe and parent

I am trying to send an event to iframes which have been opened by the application based on few events which should be prior registered by iframes. I cannot figure out how. I use jquery but I don't ...