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

    May 5, 2009 · A callback function, also known as a higher-order function, is a function that is passed to another function as a parameter, and the callback function is called (or executed) inside the parent function.

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

    Sep 27, 2008 · A callback in C is a function that is provided to another function to "call back to" at some point when the other function is doing its task. There are two ways that a callback is used: synchronous callback and asynchronous callback. A synchronous callback is provided to another function which is going to do some task and then return to the caller with the task completed. …

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

    Jan 26, 2010 · A callback can be implemented as a delegate to a method, but you could equally say that passing an object that supports a callback method on its interface is a callback.

  4. javascript - O que é callback? - Stack Overflow em Português

    Vejo em muitos códigos e até mesmo arquiteturas a palavra callback, vejo que é em funções JavaScript. Mas o que é? Como é usada? Por que? Gostaria de um exemplo de uso real.

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

    Mar 7, 2012 · 99 How to explain callbacks in plain English? In plain English, a callback function is like a Worker who "calls back" to his Manager when he has completed a Task. How are they different from calling one function from another function taking some context from …

  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 your response." So the API will process the data you have sent …

  7. How to get returned a value by a callback function

    Jan 6, 2013 · You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation and how do I get it? Instead, you can save this post to reference later.

  8. Callback functions in Java - Stack Overflow

    Passing a callback includes creating a separate object in pretty much any OO language, so it can hardly be considered overkill. What you probably mean is that in Java, it requires you to create a separate class, which is more verbose (and more resource-intensive) than in languages with explicit first-class functions or closures.

  9. Difference between event handlers and callbacks - Stack Overflow

    Mar 10, 2017 · A callback is procedure you pass as an argument to another procedure. The procedure receiving the parameter can call it, or share it so some other procedures in the system can call it. An event handler is a procedure called when an event happens. It can be a callback.

  10. What is the difference between hook and callback?

    A callback is a specific type of hook where the user code is going to initiate the library call, usually an I/O call or GUI call, which gives contol over to the kernel or GUI subsystem. The controlling process then 'calls back' the user code on an interupt …

Refresh