About 8,990,000 results
Open links in new tab
  1. language agnostic - What is a callback function? - Stack Overflow

    May 5, 2009 · A callback function is a function that you pass to someone and let them call it at some point of time. I think people just read the first sentence of the wiki definition: a callback is …

  2. How to explain callbacks in plain english? How are they different …

    Mar 7, 2012 · @JoSmo you are partly correct. Pass a variable + call-back-function as parameters taking the result created with the variable by the original function and pass it in the call-back …

  3. What is a "callback" in C and how are they implemented?

    Sep 27, 2008 · An asynchronous callback is provided to another function which is going to start a task and then return to the caller with the task possibly not completed. Synchronous callback. …

  4. c# - What is a callback? - Stack Overflow

    Jan 26, 2010 · A callback is a function that will be called when a process is done executing a specific task. The usage of a callback is usually in asynchronous logic. To create a callback in …

  5. definition - What is a callback? - Stack Overflow

    Dec 26, 2009 · A callback is the building block of asynchronous processing. Think of it this way: when you call someone and they don't answer, you leave a message and your phone number. …

  6. What is a callback URL in relation to an API? - Stack Overflow

    Jan 20, 2022 · The callback URL is like that return envelope. You are basically saying, "I am sending you this data; once you are done with it, I am listening on this callback URL waiting …

  7. How to access the correct `this` inside a callback

    Nov 29, 2013 · The first one binds this with a callback inside the method itself. And for the second one, the callback is passed with the object bound to it. p1.sayNameVersion1(niceCallback) // …

  8. How can I write a simple callback function? - Stack Overflow

    callback on its own doesn't do anything; it accepts parameters - def callback(a, b): The fact that you did callback(1, 2) first will call that function, thereby printing Sum = 3, and then main() gets …

  9. What's the difference between a continuation and a callback?

    Dec 24, 2012 · The short answer is that the difference between a continuation and a callback is that after a callback is invoked (and has finished) execution resumes at the point it was …

  10. What is a callback in java - Stack Overflow

    Jan 5, 2012 · What is a callback function? I have read the wikipedia definition of a callback but I still didn't get it. Can anyone explain me what a callback is, especially the following line . In …

Refresh