A callback is a reference to a method that is passed as an argument to another method. This could be used for example to enable a third-party library method to call a custom method upon completion of some task.

learn more… | top users | synonyms (1)

-1
votes
0answers
38 views

Local database (HTML5) get return without callback?

Here: JavaScript with HTML5 functions to create a local database. I created a local database where i save data with a special name to find them later. So lets say, the special name is "lollipop". If ...
1
vote
1answer
36 views

jQuery callback executes only to some extent

$.get("devBlog/index.php", function(data) { alert("Data Loaded: " + data); $("#main").empty(); alert("alert shows up"); $("#main").append(data); // .html(data) - same ...
0
votes
2answers
65 views

C++ callback function run time error

I have a function that accepts function pointer as an argument and calls the function pointer as shown below. int foo (int a, int(*calc)(int)) { int y; // .... // calling calc function ...
0
votes
0answers
9 views

DFP registered/successful click callback

I'm tracking to achieve a bullet-proff solution for counting sucessfull (charged) clicks on inner system. So the data flow would be like this: website gives user 100 credits. users clicks DFP adds. ...
1
vote
1answer
40 views

Android: How can I determine if an application starts with no or low GSM signal?

I have written a piece of Android code that registers a PhoneStateListener and reports the GSM signal strength values when there are changes, through the onSignalStrengthsChanged callback. Everything ...
0
votes
1answer
83 views

apply() / call() vs [function]() in jquery

What is more efficient in jquery: if ($.isFunction(func_name) $.apply(func_name, [param, etc]) or if ($.isFunction(func_name) func_name(param, etc) What are the advantages to call ...
0
votes
1answer
68 views

Multiple callback are needed

Suppose I have a script like this var a = getData(); function getData() { if (some_condition) { // Do this } else {// Do this } return fetchFromDB(param); } function fetchFromDB(param) { ...
0
votes
2answers
25 views

Javascript and Ajax - Including a calledback variable in an interval

Having the following code: <script type="text/javascript"> var chargeup = 0; var flag1 = "no"; var stored = <?php print $x_row['watts']; ?>; // Gets wstored (previous value) from DB. var ...
1
vote
1answer
48 views

How to put a lambda with external parameters into a callback function

I have the following code which basically does what I want: string firstName = "Chuck"; string lastName = "Norris"; filtered = dvds.Where( dvd => (dvd.Element("Actors") != null) ...
0
votes
0answers
33 views

Reading the duration of multiple dragged mp3s

I am trying to read the duration of dragged mp3 files to browser and display it in some list. I am not manipulating with dragged files in any way except reading out mp3 metadata (tags) and duration. ...
0
votes
0answers
61 views

How do I use setTimeout with double callbacks in javascript

EDIT: I rewrote this question with simpler code and more information in How to avoid a race condition in Nodejs and Mongoose app?. I left this as is so people can refer to detailed code if they wish. ...
0
votes
1answer
29 views

No callbacks in MATLAB GUI?

I am currently programming a GUI to display information for a robotic hand and when I right click any of the components in this GUI I cannot seem to find the Callback function. I have made a few other ...
0
votes
1answer
40 views

Function to slow down a loop using callbacks gets messed up when used recursively

note: I may be using the word recursively wrong I'm trying to create a script that runs through a long string of text, searching for the recurrence of substrings. For this I essentially do a for-loop ...
0
votes
1answer
38 views

XmlHttpRequest cannot load ajax call url. Origin domain is not allowed by Access-Control-Allow-Origin

I have two ajax call back function in my web page. There is a problem as you can see in the title. Here is my codes: $.ajax({ type: "POST", url: ...
1
vote
1answer
59 views

dart js-interop FunctionProxy callback relationship to js.context

I have a Dart js-interop callback that in turn takes a javascript callback as an argument. The dart callback implementation looks like this: void callBackToDartCode(String query, js.FunctionProxy ...
1
vote
1answer
42 views

Android AChartEngine graphicalView share events

First i give my View show below. and give some explanation: In my ViewGroup i have two GraphicalView, each of them share the same size space. Let's just call the chart above chartA and below one ...
0
votes
0answers
14 views

CommunicationException thrown from callback method calling private method

I have a fairly standard server-client setup using console applications and WCF in visual studio. My client asks for a string from the user, sends it to the server and the server validates it. If it ...
0
votes
1answer
74 views

Node.JS function the returns http response value

I need to call a function that makes an http request and have it return the value to me through callback. However, when I try I keep getting null response. Any help? Here is my code: var url = ...
0
votes
1answer
30 views

Assigning value to a global variable inside a callback function and returning it [Node.js]

I have an xml file with leagues there xml tree is so nexted with so many nodes but i want to return only the id and the name of each leage, i am using the xml-object-stream node module that can be ...
2
votes
3answers
57 views

update dependency of a property in loops

I got a foreach loop, where I update a property of the objects. This property has a dependency which I update in the setter. This seems to slow my application, because the dependency takes some time ...
0
votes
0answers
17 views

Specifying number of frames to process in audiounit render callback on iOS

I setup the audio unit render callback: AURenderCallbackStruct input; input.inputProc = RenderAudioBuffer; input.inputProcRefCon = self; err = AudioUnitSetProperty(audioPlaybackUnit, ...
0
votes
0answers
18 views

EDSDK callbacks not working

I have a working command line application, using EDSDK v2.13. However, when I register callbacks, there is a burst of property events then nothing. I have remedied this a loop like this: ...
0
votes
1answer
54 views

How to create a javascript API with asynchronous calls? [closed]

I am a beginner in javascript OOP. I'm trying to make an API to provide information stored in database. I didn't specifically used to use callbacks. My constructor makes an asynchronous call ...
0
votes
2answers
28 views

pointer to memberfunction for sdl_audio callback

i'm using the SDL lib (version 1.2.15). i try to play audio from a libav (ffmpeg) like in this example here. i have declared a class for playing the sound. but now i have to store a pointer for the ...
1
vote
1answer
48 views

How to use callbacks right?

I mess with some patterns, to make code more modular. So I have something like this: class A implements ICallback { MyObject o; B b = new B(this, someParameter); @Override public ...
0
votes
1answer
70 views

Return value from new object callback

I have the following code var foo = new Bar(function(callback){ return callback //async, use $q in angularjs }); new Bar() has its properties and callback. let say, property foo.pro() too call ...
0
votes
1answer
24 views

How to convert some WPF event handler to EventHandler<E>?

I use the article here to implement the weak referenced handler pattern. The code is really perfect before I found that the event handler in WPF is not the instance of EventHandler. Such as ...
0
votes
3answers
49 views

javascript turning my authentication function into a promise

Here's an example of my access function that I use to check whether or not the user is authenticated. access = function(id, user_id, callback) { docs.findOne({ _id: id }, function(err, doc) { ...
0
votes
1answer
20 views

dojo Deferred callback function

I want to write a callback function using dojo Deferred. I wrote two functions, a and b function a() { for(var i = 0; i < 3000; i++) { .... } } a need more time, ...
2
votes
2answers
56 views

Undefined is not a function in Jquery script

I'm having a problem with some javascript I got help with. This is the error I get: Uncaught TypeError: undefined is not a function It seems to be with my line: callback(lastResult); // send the ...
-1
votes
0answers
44 views

Node js: callback function executed long after http request completed

I tested whether the callback function was executed immediately after the http request was finished (see code below), but I found a very weird problem of node js. I used a http traffic monitor tool to ...
0
votes
0answers
26 views

Rails associated model callbacks not fired

I use accepts_nested_attributes in my model parent and the parent model has belongs_to association with children model. I am trying to use callbacks in my children model (after_update, ...
0
votes
0answers
21 views

CAS Single Logout Callback not send

I am trying to use CAS with Java and Cold fusion. I have server and 3 services 2 with Java client and one with ColdFusion client on Railo. Logging in is working as expected for all services, when I ...
0
votes
2answers
34 views

JavaScript Asynch Callback - How to await the endresult

;) I have the following situation (see also jsFiddle -> http://jsfiddle.net/sMuWK/): function CallBackStringHandler() { this.callback = function(){return null}; }; ...
1
vote
1answer
46 views

Notifying activity of processed information in Fragment

Whats the recommaned approach to notifying the hosting activity of a fragment that performs some background processing, that its done. Assuming that the fragments are running some threads that are ...
0
votes
0answers
44 views

Populate a dropdownbox using Jquery and AJAX requests?

I get the data from Jquery AJAX callback function, i have a < select class="multi" id="abc" name="xyz"> I do the append on id like this $("#abc").append("<option value=\"" + ...
0
votes
2answers
47 views

Using JQuery Against StackOverflow API

I am trying to learn how to make JSON requests via JQuery. From my understanding of the StackExchange Docs, this is possible. However, I don't understand what some of my parameter values should be. ...
0
votes
1answer
60 views

update data in Callback

I am trying to develop an application with C++ builder xe using some DLL communication. In the DLLs I use a callback which is implemented in myClass: myClass.h static void CALLBACK ...
0
votes
1answer
18 views

Where and how are callbacks in Mocha defined?

In this code example for asynchronous code on the Mocha homepage: describe('User', function(){ describe('#save()', function(){ it('should save without error', function(done){ var user = ...
1
vote
4answers
36 views

php constructor vs callback

I am currently digging into the basics of php class / constructor. I understand how a constructor works but not why I should use it. For example when I have a constructor like this: function ...
0
votes
1answer
47 views

Backbone callback functions, success not triggering code

I'm doing a simple AJAX call to append an album's tracks in an unordered list. It will append the tracks on the second click with this code: window.app.views.AlbumView = Backbone.View.extend({... ...
0
votes
0answers
15 views

iPhone URL Callback with aphlanumeric and dots only

Is there a way for an iPhone app to receive a URL callback without using the colon? The iOS Custom URL Schema requires a colon : in the URL . Unfortunately the API I'm communicating with only ...
0
votes
1answer
264 views

Accessing Parsed JSON Data from Main View Controller iOS

My current issue is I have successfully fetched data from a web service using SBJSON as well as parsed the data into a Class with several variables. Now, my main view controller is supposed to be ...
-1
votes
0answers
8 views

Reloading single column/div

I have a simple table where Data1 and Data2 are editable fields from the database using jquery.jeditable and then there is a third non-editable field is the value of the subtraction of the first two ...
0
votes
1answer
60 views

Play one sound after another with buzz.js

I am trying to as the title reads play buzz.js sound objects one after another. I have tried using the events - ended callback but this becomes rigorous with a large set of files. I thought i could ...
0
votes
0answers
39 views

Rails ActiveRecord: Update order of ordered items (using callbacks, but without creating more)

I have several different nested items that have an order attribute so they can be displayed in a user-defined order. I'd like to have some logic that makes it so that if someone saves/updates a thing ...
0
votes
1answer
78 views

Storing Rails controller callback data in session

The idea is: Perform some time consuming action in background. Have the results from that action be propagated back to the controller using a callback. Store the result in an in memory session ...
0
votes
1answer
26 views

How can I distinguish between direct instantiation and instantiation through an association in Rails?

I have an after_initialize callback that I would like to happen whenever the model is created or instantiated directly, as opposed to loaded through an association in some other place. Something like ...
1
vote
1answer
70 views

Node.js callback called twice

I'm using the sendgrid library for node.js. Currently there is a callback that it's getting fired twice. @invite = (email, agencyId, callback) -> (app.get 'agencies').findOne {_id: ...
1
vote
3answers
54 views

Why does this callback not unbind itself to transitionEnd after completing one animation?

hi im trying to bind a function to webkitTransitionEnd using jquery's .one method. when i do: $element.one( "transitionend MSTransitionEnd webkitTransitionEnd oTransitionEnd", function(e) { ...

1 2 3 4 5 94