About 56 results
Open links in new tab
  1. language agnostic - 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) …

  2. 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 …

  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

    Jul 2, 2018 · 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 …

  5. javascript - ¿Qué es un "callback"? - Stack Overflow en español

    Jul 12, 2019 · Siempre leo y escucho este termino en muchos sitios, pero no me queda muy claro a que se refiere cuando se habla de un "callback". No sé si es una función anónima o algo así.

  6. 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 …

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

    Apr 28, 2014 · 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 …

  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 …

  9. What is a callback in java - Stack Overflow

    Jan 5, 2012 · Possible Duplicate: 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 …

  10. How can I provide a "callback" to an API? - Stack Overflow

    A callback is a function provided by the consumer of an API that the API can then turn around and invoke (calling you back). If I setup a Dr.'s appointment, I can give them my phone number, so …