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
0answers
10 views

Callbacks within Streams on('data') and on('end') and Mongoose.js

I am reading a large .csv file using fast-csv myFile.js var count = 0; var stream = fs.createReadStream("name of file"); fcsv(stream) .on('data', function(data) { ModelName.find(query, ...
0
votes
0answers
27 views

How to use threading in callback functions with python

I have a class that uses the APScheduler python module to schedule jobs to be run. The callback function that I use actually is a class method that sends and receives data from the serial port ...
1
vote
1answer
29 views

optimal way of passing multiple callback functions as arguments?

I have a function that could be used in CLI or web application, that being said, there is a little difference in the process; for example: if I'm using this function for CLI it'll use a text progress ...
0
votes
0answers
36 views

Zend and jQuery $.ajax() callback not working

Zend and jQuery $.ajax() callback not working I can make my $.ajax() work on a web page, with input boxes, filled with a query with a php program, but I can't make it work using the same function, ...
0
votes
2answers
49 views

Call method from parent inside helper c#

I am trying to call a method from another class, but inside that method, call a method from the first class... I can't explain better, so here's what I want to do with code... MyClass.cs public ...
0
votes
3answers
34 views

jquery callback anonymous function closure

I've declared the variable elem in both of the loops below; however, when the anonymous function in the first loop gets called (after the 400ms fadeOut effect is finished) the elem seems to refer to ...
0
votes
2answers
41 views

Execute private function inside the class by its name (string)

At the moment I have simple JavaScript class like this: function MyClass() { // ... some code ... this.Create = function() { funcName = 'myTestFunc()'; cTimer = setTimeout(funcName, 1000); } ...
1
vote
1answer
38 views

Subclassing notepad’s Edit class (WINAPI)

I have set a SetWindowsHookEx on the Edit class of notepad, but I am not sure how to continue from here. I wish to subclass the Edit class to my own procedure, then manipulate the text or just save ...
0
votes
1answer
71 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
1answer
36 views

How the Node.js async eachLimit works in this situation?

I wrote a little async script to batch insert a lot of JSON files into a MongoDB sharded cluster. This is my first time with this module (and I'm still learning Node.js). I don't know if I'm doing it ...
1
vote
1answer
37 views

JavaScript callback values not correctly passed

I am having some trouble passing a constant value to a callback function. I am performing a RESTful request using ajax, then handling the error and success events by returning data to a callback that ...
0
votes
0answers
42 views

JavaScript callback from timer in java applet

I run an applet that does a JS callback to show an alert. When I do it directly from the applet using JSObject everything is fine. But when I start a timer in my applet and do JS callback from the ...
0
votes
1answer
41 views

Using mouse event callbacks within Python classes

I'd like to write a program that in its simplest form opens a window showing a webcam capture using OpenCV and printing the coordinates of the mouse cursor hovering over the window in terminal. For ...
0
votes
2answers
20 views

How to get the primitive from a boxed Object

When using custom callbacks (like android:onClick) the actual method is called using something like mHandler.invoke(context, View.this); According to the doc on invoke: Object ...
0
votes
1answer
22 views

setOneShotPreviewCallback not hitting onPreviewFrame() in callback

I'm creating a video capture activity for an app I'm making, and I want to capture a preview frame as well to use as a playback button. I've set the SurfaceView up in onCreate(...) and hooked up the ...
0
votes
4answers
67 views

Callback function and best practice

UPDATE: I phrased the question wrong. Both the inner and outer Latitude/Longitude members need to update each other resulting in recursion. The outer members get updated by a database context while ...
1
vote
0answers
31 views

JPA entities PrePersist and PreRemove callbacks, are they fired only once per life time of an application?

The JPA 2.0 specification talks about the PrePersist and PreRemove callbacks on page 95: The PrePersist and PreRemove callback methods are invoked for a given entity before the respective ...
0
votes
0answers
46 views

jQuery & AJAX - using return value in multiple places

I'm using jQuery (and new to it) to do an AJAX call that queries a table & returns a value. The URL has in it a time parameter, and what is being returned is a Shift Number. The XML being ...
0
votes
0answers
9 views

Client calling the Server

I want to use the NetConnection.call method() in ActionScript 3 to communicate to the server and give it a set of instructions. Has i am relatively new to ActionScript I copied the majority of the ...
0
votes
2answers
37 views

AsyncTask ProgressDialog stopped, after callback

this my task: public class GetTask extends AsyncTask<String, Void, JSONObject> { // callback private Activity activity; private AsyncTaskCompleteListener callback; private ...
0
votes
1answer
26 views

JSONP callback issue

I'm trying to get JSONP working with a server running on an Arduino. This is my JS code: window.onload = init; function init() { //alert("Test"); SendRequest(); } function SendRequest() { ...
0
votes
1answer
61 views

JQuery JSONP randomly generated callback function

I'm using JQuery to make JSONP requests and the documentation is quite confusing. I have several questions: A JSONP call is always async, is that correct? So the async:false would be simply ...
3
votes
1answer
73 views

How “this” is looked up in callback of Javascript [duplicate]

I have confused myself in the following case: function foo() { } foo.prototype.bar1 = function() { console.log(this); // shows "Window"!! } foo.prototype.bar2 = function(func) { func(); } var ...
0
votes
1answer
13 views

how to use a callback from a pysnmp V3 command responder?

I am using latest version of pysnmp 4.2.4 and have tested the SNMPV1/2C command responder example (http://pysnmp.sourceforge.net/examples/current/v1arch/agent/cmdrsp.html) which is returning an Uptime ...
0
votes
1answer
39 views

How can I create a callback function for jQuery's trigger() function?

I use trigger() to force a form submission and I need to execute a function after the form submission is complete. I assume the only way to do this is with a callback function, but it seems that ...
1
vote
1answer
22 views

Timed Callback within Tkinter?

I have a TKinter GUI that interacts with an outside program by writing data to it and reading data from it over a UDP connection. The external program sends a status message at 1Hz, and I would like ...
0
votes
1answer
38 views

Clarification on concept of callbacks and function pointers in c

I found this line on wikipedia about function callbacks, "In computer programming, a callback is a reference to executable code, or a piece of executable code, that is passed as an argument to other ...
1
vote
0answers
39 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
0answers
53 views

AccessViolationException when setting/receiving callback

I'm trying to recreate the StreamingPreview sample from Blackmagic Design's DeckLink SDK in C# using DeckLink.net dll. When I run the code below, it seems to work: the notifications get installed and ...
1
vote
1answer
53 views

Catching 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> HHOOK _hook; LRESULT CALLBACK ...
0
votes
2answers
81 views

Backbone.js $.ajax success callback inside a collection init not calling a function from the same collection

I'm trying to call loadPhotos, but I get an error saying that loadPhotos is not defined. I tried this.loadPhotos(); but then I get an error saying that the object doesn't have such a method. I'm ...
1
vote
0answers
52 views

Request an url not allowed for get status code from the response

I'm looking a solution for making a request on an not allowed domain for checking the outbound links. But my function "parse_outboundLinks" is never called. I must modify the allowed domain ? ...
1
vote
1answer
54 views

What's wrong with my signal handler?

I'm trying to figure out why my code outputs "1" on the first invocation from the static main function and some apparently random value on subsequent calls from a Gtk.Button. gtkdream.vala: using ...
0
votes
0answers
14 views

WCF Durable Session - callback specific client

I need to use session based service with ability to restore the client instance and also to be able to identify each client separately. With reliable session I can write IEventSystemCallback ...
0
votes
1answer
27 views

Why do I get a SIGSEV error while trying to use a glut callback?

In a test program that I am making in C++, I decided to add code to turn when the mouse is moved to the side. The original code worked, but when I added glutPassiveMotionFunc to the program, it gives ...
0
votes
1answer
47 views

C++ register callback from server

I've prototype of callback as: typedef void (*update)(int id,...); typedef void (*destroy)(int id,...); typedef void (*create)(int id, update* _update, destroy* _destroy); And than create callbacks ...
1
vote
0answers
67 views

Javascript Callback function scope issue

I am having a trouble in How to assign value in the callback function? Thanks to Rodik I have some general idea of how to do it. However, I am still not sure how to pass the img value to getImage ...
0
votes
0answers
32 views

SyncTask callback to Activity instance

I have read examples on how to call back from an external class which implements the AsyncTask. Two ways were mentioned, one with an interface, other is more direct giving the activity instance (this) ...
0
votes
1answer
15 views

WCF - Can i securely use the CallbackChannel to identify authenticated clients?

I'm using NetTcpBinding with a WPF client. i want to know if the CallBackChanel (OperationContext.Current.GetCallbackChannel) can be spoofed by some one else ... i meen, can i be sure, if i store this ...
2
votes
2answers
89 views

How to do a simple C++ generic callback?

Say I have the following code: class A { public: A() {} int f(void*, void*) { return 0; } }; template <typename T> class F { public: F(int(T::*f)(void*,void*)) ...
0
votes
2answers
46 views

Android: Implement inner class in outer class; callback from inner class and outer class

I have multiple fragments in one activity that should be able to pass data inbetween them. I have used tutorials to implement callbacks. My MainActivity is the outer class in which my fragment classes ...
0
votes
0answers
18 views

Marker animation drop callback

I'm working with google maps, I have this _marker() function. I am currently using a setTimeout with 6 seconds to delay the callback so that it runs after the marker has been dropped. I've been ...
0
votes
1answer
42 views

Unity3d: Script changes value of property but nothing happens

I have set a public property of type Mode (a enum) "mode" for my GameObject's GameManager Monobehaviour, however sometimes, specially on callbacks, asigning a value to said property doesn't do ...
0
votes
0answers
7 views

OAuth+GetGlue = getQueryParameter returns null

I'm trying to do check'ins to GetGlue using GetGlue API. I have this code from SeriesGuide GitHub. I'm new with Oauth and I don't know why it doesn't work because ...
2
votes
1answer
42 views

JQuery wrong ajax done callback fired

I have a strange situation going on with ajax callbacks. Call A works fine (I can see the server calls in the right place), and the done callback is fired correctly. Call B call works fine (I can ...
0
votes
1answer
45 views

WCF Callback locking up if called in same thread as current context

I hope I can word this correctly. I have a WCF Service that I'm using (duplex channel communications) in which one client registers with the service. The service's registration method returns a ...
0
votes
0answers
19 views

RAR lib RARSetCallback doesn't execute my callback function

I've been trying to figure out why the callback function I supplied for the RARSetCallback is not called. RARSetCallback(pHandler, call_back_func, &buffer); My callback function looks like this ...
-1
votes
1answer
33 views

Breakpoint created a bug

I have one program built in Visual Studio 2012 with: #include <device_dll.h> Typedef typedef BOOL (__stdcall *ReadCallback) (..., void *obj); static ReadCallback ReadCallbacAPtr; class ...
1
vote
0answers
56 views

Sencha Touch 2 - How can I recall a detail from a JsonP with a callback

I have made an application that fetches news from an external site. I use a list that recalls items from a JsonP, with this store: Ext.define('Grottaglie.store.Articoli', { extend: 'Ext.data.Store', ...
0
votes
1answer
62 views

Loading one thing after another

I’m hoping someone can throw some light on a novice geek’s latest problem. This is my meagre little page: http://www.dogsactually.co.uk/nada_and_orla/orla.html It has a splash screen (rightly or ...

1 2 3 4 5 90