Tagged Questions
A callback is a reference to a method that is passed as an argument to another method. This could for example be used to enable a third-party library method to call a custom method upon completition of some task.
64
votes
6answers
75k views
Getting a better understanding of callback functions in JavaScript
I understand passing in a function to another function as a callback and having it execute, but I'm not understanding the best implementation to do that. I'm looking for a very basic example, like ...
40
votes
9answers
26k views
JQuery pass more parameters into callback
Is there a way to pass more data into a callback function in Jquery?
I have two functions and I want the callback to the $.post, for example, to pass in both the resulting data of the AJAX call, as ...
37
votes
4answers
10k views
Difference between a Postback and a Callback
I keep on hearing this words 'callback' and 'postback' tossed around.
What is the difference between two ?
Is postback very specific to the ASP.NET pages ?
32
votes
3answers
12k views
How to perform Callbacks in Objective-C
I am a beginner programmer in Objective-C. Can anyone please tell me how to perform call back functions in Objective-C.
I would just like to see some completed examples and I should understand it.
...
31
votes
5answers
13k views
How can I pass a parameter to a setTimeout() callback?
I have some JavaScript code that looks like:
function statechangedPostQuestion()
{
//alert("statechangedPostQuestion");
if (xmlhttp.readyState==4)
{
var topicId = xmlhttp.responseText;
...
28
votes
8answers
5k views
Response.Redirect vs. Server.Transfer
Which is better, Response.Redirect or Server.Transfer in ASP.NET ?
27
votes
4answers
9k views
How to have a javascript callback executed after an update panel postback?
I'm using a jQuery tip plugin to show help tips when the user hovers certain elements of the page.
I need to register the plugin events after the page is loaded using css selectors.
The problem is ...
24
votes
4answers
9k views
What is the difference between Page.IsPostBack and Page.IsCallBack?
I've recently ran into some code that checks Page.IsCallBack but I wasn't sure how it is different from Page.IsPostBack. Can anyone enlighten me?
Edit: Are they mutually exclusive or can both occur ...
24
votes
7answers
19k views
JavaScript Callback Scope
I'm having some trouble with plain old JavaScript (no frameworks) in referencing my object in a callback function.
function foo(id) {
this.dom = document.getElementById(id);
this.bar = 5;
...
23
votes
5answers
7k views
How do I 'validate' on destroy in rails
On destruction of a restful resource, I want to guarantee a few things before I allow a destroy operation to continue? Basically, I want the ability to stop the destroy operation if I note that doing ...
21
votes
5answers
31k views
What is a “callback” in C and how are they implemented?
I am new to C, Objective-C, and Core Audio programming on OSX. From the reading that I have done, Core Audio relies heavily on callbacks (and C++, but that's another story). I understand the concept ...
18
votes
9answers
26k views
Callback functions in Java
Is there a way to do pass a call back function in a Java method?
The bahaviour I'm trying to mimic is a .Net Delegate being passed to a function.
I've seem people suggesting creating a separate ...
17
votes
5answers
526 views
Pros and Cons of Inversion of Control
Suppose I have a stream of [acme] objects that I want to expose via an API. I have two choices, callbacks and iterators.
API #1: Callbacks
// API #1
// This function takes a user-defined callback
...
17
votes
1answer
4k views
How should asp.net(mvc) server return error to jquery ajax call to be caught in error callback?
Suppose I have a method in my controller that is called via a jQuery AJAX call. E.g. I'd like to delete a user. When everything goes fine, I return new Content('ok') and exit the method.
What should ...
16
votes
2answers
23k views
Rails: update_attribute vs update_attributes
Object.update_attribute(:only_one_field, "Some Value")
Object.update_attributes(:field1 => "value", :field2 => "value2", :field3 => "value3")
Both of these will update an object without ...
16
votes
4answers
23k views
How do I write a jquery function that accepts a callback as a parameter
I Have the following function.
function ChangeDasPanel(controllerPath, postParams) {
$.post(controllerPath, postParams, function(returnValue) {
$('#DasSpace').hide("slide", { ...
15
votes
4answers
930 views
In C++, is it safe/portable to use static member function pointer for C API callbacks?
In C++, is it safe/portable to use static member function pointer for C API callbacks? Is the ABI of a static member function the same as a C function?
15
votes
5answers
4k views
How to implement a “callback” in Ruby
I'm not sure of the best idiom for C style call-backs in Ruby - or if there is something even better ( and less like C ). In C, I'd do something like:
void DoStuff( int parameter, CallbackPtr ...
15
votes
9answers
36k views
Can you wait for javascript callback?
I'm trying to use the jQuery alerts dialog library from http://abeautifulsite.net/notebook/87 instead of the default alerts (which look pretty awful in my opinion). This seems to be a great library, ...
14
votes
6answers
24k views
Facebook “Like” button callback
I am interested in implementing the facebook "Like" button, but I would like to know what user is clicking on this button so I can get some useful information from this. From what I have read, ...
14
votes
6answers
9k views
Callback functions in c++
In c++, when and how to use a callback function?
EDIT:
I would like to see a simple example to write a callback function.
14
votes
10answers
11k views
14
votes
8answers
6k views
Python: Callbacks, Delegates, … ? What is common?
Just want to know what's the common way to react on events in python. There are several ways in other languages like callback functions, delegates, listener-structures and so on.
Is there a common ...
13
votes
6answers
4k views
Managing lots of callback recursion in Nodejs
In Nodejs, there are virtually no blocking I/O operations. This means that almost all nodejs IO code involves many callbacks. This applies to reading and writing to/from databases, files, processes, ...
13
votes
2answers
6k views
jQuery / Ajax - $.ajax() Passing Parameters to Callback - Good Pattern to Use?
JavaScript code I'm starting with:
function doSomething(url) {
$.ajax({ type: "GET",
url: url,
dataType: "xml",
success: rssToTarget
});
}
...
12
votes
5answers
2k views
error handling in asynchroneous node.js calls
I'm new to node.js although I'm pretty familiar with JavaScript in general. My question is regarding "best practices" on how to handle errors in node.js.
Normally when programming web servers, ...
12
votes
6answers
857 views
Why do you need “extern C” for C++ callbacks to C functions?
I find such examples in Boost code.
namespace boost {
namespace {
extern "C" void *thread_proxy(void *f)
{
....
}
} // anonymous
void thread::thread_start(...)
{
...
12
votes
3answers
6k views
jQuery Plugin: Adding Callback functionality
I'm trying to give my plugin callback functionality, and I'd like for it to operate in a somewhat traditional way:
myPlugin({options}, function() {
/* code to execute */
});
or
...
11
votes
2answers
97 views
jQuery callbacks apparently repeat on failure?
I seem to be observing at least one case where a callback function passed to a jQuery effect function will execute repeatedly if there's an error while it's executing.
For example, see this JS ...
11
votes
3answers
3k views
Observers vs. Callbacks
i thought about using observers or callbacks.
What and when you should use an observer?
F.e. you could do following:
# User-model
class User << AR
after_create :send_greeting!
def ...
11
votes
4answers
2k views
Are delegates and callbacks the same or similiar?
Are delegates the same thing as callbacks? Or are they related somehow?
10
votes
2answers
175 views
What's the memory limit in WinXP when getting a callback from a C++ DLL in C#?
I have a C# application that uses an unmanaged C++ DLL. I've found a crash that only happens in WinXP (not Win7) when the memory I'm passing back from the C++ DLL is too big.
The basic flow is that ...
10
votes
4answers
308 views
Programmatically implementing callbacks with JS/jQuery
So, I'm writing a web app. Pretty much everything is done client-side, the server is but a RESTful interface. I'm using jQuery as my framework of choice and implementing my code in a Revealing Module ...
10
votes
1answer
1k views
WCF: How to detect client-side if the server disconnects me
I have a WCF self-hosted service with a net.tcp DuplexChannel. On the server I run the following to disconnect a client:
((ICommunicationObject)client.CallbackChannel).Close();
This works fine but ...
10
votes
1answer
2k views
What is a binder callback on Android?
I have been watching the Google I/O presentation by Virgil Dobjanschi on the correct way to implement REST on Android with services and content providers. ...
10
votes
4answers
3k views
Seeking WCF Duplex “TwoWay” Subscribe+Callback Example
Renewing the bounty AGAIN because I really need to know how to get this to work, or a definitive answer about why it won't.
I've added an alternative explanation of the problem here.
Having a hell ...
10
votes
11answers
3k views
call a function named in a string variable in c
I want to call a function using a variable.Is it possible in C??
Actually, what I want to do is, get the function name from the user and store it in a variable say var. Now I want to call the function ...
10
votes
6answers
4k views
Using ActiveRecord, is there a way to get the old values of a record during after_update
Setup using a simple example: I've got 1 table (Totals) that holds the sum of the 'amount' column of each record in a second table (Things).
When a thing.amount gets updated, I'd like to simply add ...
10
votes
2answers
4k views
How to Pass an Object Method as a Parameter in Delphi, and then Call It?
I fear this is probably a bit of a dummy question, but it has me pretty stumped.
I'm looking for the simplest way possible to pass a method of an object into a procedure, so that the procedure can ...
10
votes
2answers
1k views
Alternatives to using delays when automatically testing an AJAX web UI
I will soon be working on AJAX driven web pages that have a lot of content generated from a Web Service (WCF).
I've tested this sort of thing in the past (and found it easy) but not with this level ...
10
votes
4answers
3k views
Has anybody compared WCF and ZeroC ICE?
ZeroC's ICE (www.zeroc.com) looks interesting and I am interested in looking at it and comparing it to our existing software that uses WCF. In particular, our WCF app uses server callbacks (via HTTP).
...
9
votes
2answers
354 views
How to avoid memory leaks in callback?
Effective Java says:
A third common source of memory leaks
is listeners and other callbacks. If
you implement an API where clients
register callbacks but don’t
deregister them explicitly, ...
9
votes
2answers
2k views
Waiting on multiple asynchronous calls to complete before continuing
So, I have a page that loads and through jquery.get makes several requests to populate drop downs with their values.
$(function() {
LoadCategories($('#Category'));
...
9
votes
3answers
2k views
Callbacks in Thrift Asynchronous Functions?
In Thrift it is possible to use the oneway modifier to specify a call as asynchronous.
Apparently, it's not possible to define a callback, though, to be executed when the execution of the function is ...
9
votes
2answers
142 views
Javascript: What does the function given to setTimeout get called with?
I have code like this:
setTimeout(foo, 600);
I always thought that foo didn't take any arguments, e.g.:
function foo() { /* bars */ }
However, doing the following:
function foo(a) { alert(a); ...
9
votes
2answers
5k views
Detecting Client Death in WCF Duplex Contracts
I'm trying to build a SOA where clients can perform long running queries on the server and the server responds using a callback.
I'd like to be able to detect if the client disconnects (through user ...
9
votes
5answers
8k views
Parallel Python: What is a callback?
In Parallel Python it has something in the submit function called a callback (documentation) however it doesn't seem to explain it too well. I've posted on their forum a couple days ago and I've not ...
9
votes
2answers
14k views
How do I pass multiple arguments into a javascript callback function?
Javascript code:
function doSomething(v1,v2){ //blah; }
function SomeClass(callbackFunction,callbackFuncParameters(*Array*))={
this.callback = callbackFunction;
this.method = function(){
...
8
votes
1answer
297 views
Consequences of drawable.setCallback(null);
While trying to implement small in-memory cache of Drawables, I learned that to avoid memory leaks after closing activity I need to unbind those Drawables: set their callback to null.
Because ...
8
votes
3answers
227 views
Can a JavaScript function detect which Flash DOM object called it?
Here's the challenge: I have a Flash movie which will be embedded in a page using an unknown DOM ID that I want to be able to identify/store for callback in a JS function.
My ideal user flow would ...