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. |
||
|
|
|
|
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. |
||
|
|
|
|
This concept wasn't taught me in school, but when I started working I saw its being used at quite frequently at many places. |
||
|
|
|
|
From what I think, a callback function is a function you specify to an existing function/method, to be invoked when an action is completed. 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 |
|||
|
|
|
|
Note that callback is one word. The wikipedia callback page explains it very well. quote from wikipedia page:
|
||||||
|
