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)

0
votes
1answer
16 views

Is it possible to make two-way communication between two devices via NFC?

I am trying to provide an application which sends multiple data between two different devices via NFC. For ex: device1 sends "date" comment and device2 gets the comment via NFC communication and then ...
0
votes
1answer
7 views

how to implement pusher presence authentication callback in javascript

I have set my pusher object for the destination authentication request Pusher.channel_auth_endpoint = '/php/pusher_auth.php'; Is here a js callback event so that I could display an ajax loading gif ...
1
vote
1answer
65 views

How to get the result of a callback function before continuing the main function?

I use a recursive function to construct a JSON data containing (URL, children, data). I send this data to my graph (RGraph library) in order to create it. The problem is that in my function creer_json ...
5
votes
2answers
1k views

How do I detect a transition end without a JavaScript library?

I'd like to delete an object after it's done animating with a CSS transition, but I'm not able to use a JavaScript library. How do I detect when the animation is done? Do I use a callback or custom ...
0
votes
1answer
22 views

Python BaseHTTPServer.HTTPServer - callback for start and stop event

Reference: http://docs.python.org/2/library/basehttpserver.html I have the following code snippet which uses Python BaseHTTPServer to run a basic HTTP server. from BaseHTTPServer import HTTPServer ...
0
votes
3answers
61 views

JS Callback on writing html to element

I have a short script which writes into the documnet.getElement(xxx).innerHTML = myGeneratedHTML. I also have a jquery piece of code for writing a styling over the generated HTML. The issue is, I ...
0
votes
0answers
5 views

facebook deauthorize callback url is called twice

I have an FB application in which i've set Deauthorize callback url and i m having problem with the url being called. I m using asp.net MVC and my code is as below. [HttpPost] public ...
2
votes
1answer
393 views

Sending message from service to UI-Thread - Messages delayed in service's handler

I have a service which is pulling data from the server. And I have activity as gui which needs to get updated. So on different occassions, e.g. the information was pulled from the server ...
2
votes
1answer
21 views

Uitable set callback to column name

I have a uitable in MATLAB and currently I have callback functions to every cell. I have been trying for a while now to set a callback to the column and row name, but with no success. More ...
1
vote
1answer
42 views

Can't catch the screen saver event

I'm trying to catch the screen saver event. This is my code: #include "stdafx.h" #include <iostream> #include "stdio.h" #include <Windows.h> #include <strsafe.h> HHOOK _hook; ...
1
vote
1answer
17 views

Updating an existing record just created in a Callback

Through a after_create callback I'm trying to assign a User a Program_id though a join model, and assign initial values for three additional parameters in that same join model. Assigning the ...
0
votes
0answers
39 views

Jquery load callback function not working in Internet Explorer

My page is loading fine in all browsers. But the callback function does not call the radio button change event in Internet Explorer. i.e debug code does not display: alert("btn changed: "+ ...
0
votes
1answer
31 views

Matlab visualization of video

I have a video file that I need to visualize in Matlab. From this file, I extract down-sampled thumbnails and merge them into a single image. This image is displayed using imshow command and gives the ...
0
votes
1answer
60 views

Affect a variable in callback function

This kind of question is very frequent, but I could not make what I want. My code look like this. Some pubKeyProfiles are stored in chrome.storage, and I want my function getProfile to return one of ...
0
votes
2answers
99 views

Return “success” message after form submit

I am trying to return a "Thank you" message after a successful jquery email validation and form submission. I want to show the "Thank you" message and prevent the page from redirecting to the action ...
0
votes
2answers
36 views

error: cannot convert 'void (CApp::*)()' to 'void (*)()' for argument '1' to 'void Mix_HookMusicFinished(void (*)())'

I'm trying to create a C++ application using SDL and SDL_Mixer for audio, and am trying to follow this tutorial. However, using SDL_Mixer's Mix_HookMusicFinished() isn't working, giving the error: ...
1
vote
1answer
32 views

jQuery deferred objects and callbacks

I have the following simplified code: $.when(someClass.MethodWithXhrCall(args, callBack, errCallBack)) .then(function () { console.log('Yep'); } }) .fail(function () { ...
0
votes
0answers
17 views

Audio Queue callback not called

I want to play realtime audio stream on iPhone. 320 samples per packet, 16000Hz PCM. I am using Audio Queue, but callback is not called. I just put the following code in the viewDidLoad: OSStatus ...
0
votes
1answer
24 views

Why mongoose.model.create's Callback Isn't Executed from within Express 3.x HTTP Request Handler (connect-mongodb is the cause, actually)

To put the problem stright in code: expressApp.get('/', function requestHandler(req, res) { userMongooseModel.create(userPropertiesDict, NEVER_CALLED_CALLBACK); console.log('This is printed just ...
0
votes
1answer
15 views

Why use functors? Cant i just pass function reference instead?

template <typename Fn> void do_stuff(Fn f, int a, int b) { int c = f(a, b); do_something(c); } Then i call: do_stuff(Add(),1,2); here Add() is a functor. As i ...
-2
votes
1answer
42 views

Where is thee callback happening in this code?

class Add { Add(){cout<<"ctor";} void operator()(int a ,int b){return a+b;} } int main() { Add(3,4); } Add is the functor.And functor can help in ...
0
votes
2answers
36 views

Call the parent function recursively in a non-blocking callback function

Is it possible to call a parent function recursively in a non-blocking callback function? For example: function checkValidZip(zipInput) { if (!zipInput.trim().match(/^(\d{5})$/g)) { ...
0
votes
1answer
16 views

Removing named callbacks that are wrapped in an anonymous functions?

Is there a way to remove the listeners on a passed in named callback function that are wrapped in an anonymous function? UPDATE. More complete code examples below. Here are the details. I've a ...
6
votes
3answers
2k views

Catching an exception thrown in an asynchronous callback

I have a method that takes a callback argument to execute asynchronously, but the catch block doesn't seem to be catching any exceptions thrown by the synchronous call (this.Submit refers to a ...
0
votes
2answers
268 views

ebay api jquery uncaught reference error on callback

I am working on a simple eBay jQuery plugin. It succeeds in making the call. It returns a result. However, I get "Uncaught ReferenceError: _cb_findItemsByKeywords is not defined" when it tries to find ...
1
vote
0answers
53 views

AJAX not firing before Callback

I'm attempting to run an AJAX query and insert the results into a local database before moving onto a new window.location. However, the success function to insert the results does not run. Instead the ...
1
vote
3answers
23 views

Matlab Callback Function Only Sees one Parameter Passed to it

I'm writing my first GUI programmatically in Matlab. I have built the visual aspect of the GUI and I am now in the process of writing the Callback functions. When I write the callback function I need ...
0
votes
1answer
7 views

Javascript geolocation API and the lacking callbacks

Using Javascript geolocation API the user is prompted in that way: "Would you like to use your current Location?" Three things may happen: 1) The user choose OK 2) The user choose "Don't allow" 3) ...
1
vote
3answers
160 views

Javascript - how to work with the iterator in a for loop with callbacks

I am trying in the for loop to access the value of the i with which the callback function uses. How can I do this? for (var i = 0; i < a.length; i++) { calcRoute(fixedLocation, ...
8
votes
2answers
2k views

Call a constructor from variable arguments with PHP

I have a function that takes variadic arguments, that I obtain from func_get_args(). This function needs to call a constructor with those arguments. However, I don't know how to do it. With ...
0
votes
0answers
6 views

Is there a way to detect which MutationObserver a callback was called from?

If I have a single callback function and two MutationObservers for two different dom nodes, is there a way to tell which observer triggered the callback when it is called? The work the callback needs ...
0
votes
1answer
28 views

How can I do a callback from FireBreath to JavaScript

Code sample: bool MirrarOrnaments::onMouseDown(FB::MouseDownEvent *evt, FB::PluginWindow *) { if(evt->m_Btn == FB::MouseButtonEvent::MouseButton_Left) { //from here i need to function in ...
0
votes
0answers
109 views

Twitter MGTwitterEngine not redirect to iphone application

I have integrated MGTwitterEngine in my iOS application to tweet. Twitter was working fine till last week. I have not made any change in iOS code. But today after login, Twitter does not redirect me ...
0
votes
2answers
84 views

Complete callback in AngularJS animation

I have an AngularJS animation... app.animation('slide-show', function () { return { setup: function (element) { }, start: function (element, done) { ...
0
votes
1answer
67 views

Invoke PublishProgress() from a callback yet invoked from AsyncTask

After 3 years of reading it's my 1st post here. There never was a need to write one. It's a very good site here. I got the idea to extend the native AsyncTask class to support callbacks invoked ...
0
votes
2answers
48 views

How to insert a callback function correctly so as to let one function end and then execute another

I have this simple slider JScript that hovers thumbnails to the left or the right depending on what button you click. <script> $(document).ready(function() { $(".right-arrow").click(function(){ ...
6
votes
1answer
101 views

How to get the number of parameters of a run-time determined callable?

NOTE: By virtue of writing this quesiton, I've already figured out that I was being overly enthousiastic about using a new language feature. The far cleaner solution was using a Strategy Pattern ...
0
votes
1answer
26 views

Node.JS / Javscript Async Call back issue

I am trying to accomplish the following (should be quite basic and I must be missing something trivial): 1. Call a function with string that has a select statement 2. Wait until the DB call completes ...
0
votes
1answer
43 views

Calling several timers with the original values from when they were created?

I am working on an application that queries servers for its status via WMI, I was asked to make it automatically recurrent and that it can queue the queries to get the statuses of several servers ...
0
votes
0answers
29 views

blogger json geting thumbnail image from the post img url instead of media$thumbnail default

i am using a script in blogger with json feed for recent posts and part of the script there is this code where the image thumbnail is fetched through the blogger entry media$thumbnail by default for ...
4
votes
2answers
2k views

How to use zurb foundation reveal with open, opend, close, losed callback function?

On zurb foundation's website at http://foundation.zurb.com/docs/reveal.php they listed some Options including open: callback function that triggers 'before' the modal opens. opened: ...
0
votes
1answer
27 views

MATLAB: Pushbutton callbacks to update and amend variables and cell arrays

I am new to making GUIs and this is my first attempt, but I have spent days searching for an answer to a really basic pushbutton question.There was a similar question on here but it doesn't work for ...
1
vote
0answers
22 views

Checking if a condition is valid after saving to database, then executing an action -Rails

I've been trying to figure out how to update a field in a table when a condition becomes true. My site checks if a workout has been completed by comparing two arrays. When the completedExercises ...
0
votes
2answers
32 views

node pg callback event

Hey basicly im writing a web appliaction ,i didint like to handle evrything in app.js so i did make one script called event.js what is handle the page functions and i just do export them ,my problem ...
0
votes
1answer
39 views

Nested Callbacks with NodeJS & MySQL

I have come to a time in my java-script adventure where I have needed to nest callbacks. I have the following code. I keep reading bout nested callbacks being hell... if someone could explain or help ...
0
votes
1answer
13 views

Callback Issue with codebird.js Twitter Search

I'm having difficulty getting the callback function to work with codebird.js running a tweet search. I get the request response in my log and it appears to be working, but search_callback(result) does ...
0
votes
1answer
33 views

Must GTK “callbacks” be static functions?

In all of the gtk examples I've read, callbacks are always static functions. I think I remember reading somewhere that there is a reason for that, but I can't find it now. Must GTK callback functions ...
1
vote
2answers
20 views

I can't receive data from custom module in node.js

I wrote a module called accountManager.js var sqlite3 = require('sqlite3'); var db = new sqlite3.Database("./users.db"); exports.userExists = function userExists(nickName) { var stmt = 'SELECT ...
0
votes
2answers
34 views

Nested Callback stuck in Loop

I have nested callback that is setup as following: function submitForm() { BuildContent($('#Content').val(), '', true, submitForm) PerformSubmit(); } function BuildContent(textWithUrl, ...
1
vote
1answer
150 views

Implement Camera API in Android 2.3

I'm working on a camera API. It works perfectly in 4.0 and 4.1 but when I try it on devices with Android 2.3 or less, it crashes in surfacechanged function. I'm using front camera for taking picture. ...

1 2 3 4 5 91