What is a callback function?
|
A callback is a function which you pass to an API to be called at a later time. The most obvious case is an event handler in a GUI. Take Javascript as a very simple example:
Here, onclick="interact()" is telling Javascript to call the interact function when the button is clicked. In the code, we never actually call interact() ourselves. It's always done by the browser for us. We pass it the function and it calls it at a later time for us. Another example is using Ajax in Javascript. In Ajax, there are three parts.
After step 1, our Javascript program idles. It sits patiently in the background, listening for an incoming call from the web server. When it gets one, what does the browser do? Answer: we have to pass it a callback in step 1 and it executes it in step 3. |
|||||||||||
|
|
Note that callback is one word. The wikipedia callback page explains it very well. quote from wikipedia page:
|
|||||||||||
|
|
Many are confused by what a callback is because of the name of the damned thing. A callback method is one which is passed as an argument from another method which is invoked due to some kind of event. The 'call back' nature of the argument is that it returns it's result to the method that provided it as an argument - that is to say that it 'calls back' with the return value of the callback method.
Callbacks are so-called due to their usage with pointer languages. If you don't use one of those, don't labour over the name 'callback'. Just understand that it is just a name to describe a method that's supplied as an argument to another method, such that when that method is called (whatever condition, such as a button click, a timer tick etc) the callback method is therefore invoked, which returns a result to the calling method, which in turn returns a result to the event. |
|||||||||||||
|
|
A callback function is one that should be called when a certain condition is met. Instead of being called immediately, the callback function is called at a certain point in the future. Typically it is used when a task is being started that will finish asynchronously (ie will finish some time after the calling function has returned). For example, a function to request a webpage might require its caller to provide a callback function that will be called when the webpage has finished downloading. |
|||
|
|
|
A callback function is a function you specify to an existing function/method, to be invoked when an action is completed, requires additional processing, etc. In Javascript, or more specifically jQuery, for example, you can specify a callback argument to be called when an animation has finished. In PHP, the |
||||
|
|
|
A layman response would be that it is a function that is not called by you but rather by the user or by the browser after a certain event has happened or after some code has been processed. |
|||||
|
|
I believe this "callback" jargon has been mistakenly used in a lot of places. My definition would be something like:
I think people just read the first sentence of the wiki definition:
I've been working with lots of APIs, see various of bad examples. Many people tend to name a function pointer (a reference to executable code) or anonymous functions(a piece of executable code) "callback", if they are just functions why do you need another name for this? Actually only the second sentence in wiki definition reveals the differences between a callback function and a normal function:
so the difference is who you are going to pass the function and how your passed in function is going to be called. If you just define a function and pass it to another function and called it directly in that function body, don't call it a callback. The definition says your passed in function is gonna be called by "lower-level" function. I hope people can stop using this word in ambiguous context, it can't help people to understand better only worse. |
||||
|
|
This makes callbacks sound like return statements at the end of methods. I'm not sure that's what they are. I think Callbacks are actually a call to a function, as a consequence of another function being invoked and completing. I also think Callbacks are meant to address the originating invocation, in a kind of "hey! that thing you asked for? I've done it - just thought I would let you know - back over to you". |
|||
|
|
The simple answer to this question is that a callback function is a function that is called through a function pointer. If you pass the pointer (address) of a function as an argument to another, when that pointer is used to call the function it points to it is said that a call back is made |
|||
|
|
|
look at the image :) |
|||
|
Assume we have a function And see the advantage is that we can choose any algorithm like:
Which were, say,have been implemented with the prototype:
This is a concept used in achieving Polymorphism in Object Oriented Programming |
||||
|
|
|
This concept wasn't taught me in school, but when I started working I saw its being used at quite frequently at many places. |
|||
|
|

