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
3answers
35 views

C++ Running a function pointer of class A from within class B as callback

I'm trying to run a method of one class from inside another class, I have a basic GUI that lets the user fill his name and password, and when it clicks the login button another takes over and handles ...
0
votes
1answer
21 views

Trouble retrieving JSON from python script via $.getJSON in javascript

Right now, I'm trying to access data from the education.com API. However, I'm still unable to do so. Basically, from what I understand, I'm supposed to use this python script to suppress the cross ...
3
votes
2answers
46 views

callback Python from Fortran

Now I am using the f2py to call Python function from Fortran code. I have tried a very easy example but it didn't work. Fortran90 code: subroutine foo(fun,r) external fun integer ( kind = 4 ) i real ...
0
votes
3answers
38 views

What is the relation between a callback and dto? [closed]

From what i understand a Data Transfer Object is virtually a callback object that has no methods. When you pass a callback you pass the data and attach operations to it. When you pass a DTO you just ...
0
votes
1answer
14 views

Is there an Android Beam failure callback

I am trying to build an NFC enabled application that transmits data to another device via Android Beam (pushing a NDEFMessage). While I know there is a success callback void ...
0
votes
0answers
9 views

luajit qsort callback example memory leak

I have the following qsort example to try out callbacks in luajit. However it has a memory leak which is not obvious to me. Can somebody give me some hints on how to create a proper callback example? ...
0
votes
1answer
42 views

perl Callbacks in async code

I'm trying to make a Queue Manager that get jobs when files are created in a specific folder. I've created my code using AnyEvent so it's async. My problem is, i'm trying to deliver a return value ...
0
votes
1answer
32 views

Callback in python script

I've never used python before. Thus, I'm kind of confused. I'm trying to use python script to obtain data from the education api. I'm unsure as to how I would accomplish this. I have the following ...
-1
votes
0answers
8 views

No call back from Video [closed]

We have a game on the App on the store that uses YouTube. When the user watches a video. We get notified once the video has been completed. We then give the player a reward. In the last 2 weeks it ...
0
votes
1answer
13 views

Accessing a C/C++ structure of callbacks through a DLL's exported function using JNA

I have a vendor supplied .DLL and an online API that I am using to interact with a piece of radio hardware; I am using JNA to access the exported functions through Java (because I don't know C/C++). ...
1
vote
2answers
31 views

ansi c globally accessible callback

I'm trying to setup a globally accessible callback function within a c program using a method supplied during runtime. So far I've got the following: principal.h ----------- extern Callback ...
0
votes
1answer
20 views

fine-uploader resubmit parameters but not file

I'm using fine-uploader to take multiple (large) files and pass the filename along with an additional user-input parameter. I do that by creating a text input box (called 'allele_freq') next to each ...
1
vote
1answer
57 views

Passing callbacks to C code from .NET, valid code or not?

We have a .NET (c#) wrapper for a rather large C API. In this wrapper the user can provide a callback which is called repeatedly from the native code. The callback looks like this : ...
1
vote
1answer
17 views

Invoking Actions from Moq

I've got a service with a method that takes two Actions, one for success and one for failure. Each Action takes a Result parameter that contains additional information... void ...
0
votes
0answers
22 views

Wait for LocationClient callback

I am trying to write simple method to get location via Google Play Services. Something like this (yeah, it probably has some other problems..): Location getLastLocation() { final Location ...
0
votes
1answer
10 views

What is the callback URL for in SSO?

sorry i don't know what is the purpose of the callback URL in most SSO context. Could someone please give me some tips, like why is the callback URL necessary, what it is used for, and what should i ...
0
votes
1answer
18 views

refactoring callback inside model

I am pretty new to rails and I am trying to create a callback that will apply user information before a record is saved. Here is the callback: def add_resolution_name if self.res_desc_changed? ...
0
votes
1answer
37 views

Nesting callbacks with setTimeout();

How could I rewrite this chain of anonymous function definitions into separate functions, so that it is more maintainable and readable? Thanks! function animation(){ var timeout; ...
2
votes
4answers
54 views

Click anywhere to remove class

The sample code is here: http://codepen.io/vincentccw/pen/loAwu Basically what I want to do is creating a custom dropdown list using tag but replaceable div button. My problems is once I click on ...
0
votes
0answers
8 views

callback function is not called when fb.ui apprequests is used with subdomains

FB.ui({method: 'apprequests', title: _title, data: _data, message: _message, to: '', }, requestCallback); This code is ...
0
votes
1answer
40 views

Skipping :after_add callback when adding objects

I have an model with a :has_many with an :after_add. class User < ActiveRecord::Base has_many :jobs, :after_add => :invalidate_old_jobs end Now I want to add several of these objects, ...
0
votes
1answer
18 views

Call Back Function for Popup menu in Matlab

I have generated a popup menu without using GUIDE by using following code which works well: figure; row=4; String =sprintf('Video%d#', 1:row); String(end) = []; CString=regexp(String , '#' , ...
0
votes
3answers
47 views

Accessing 'this' scope variable from callback

I am a javascript newbie, i have a problem with the following code. Am trying to set a price value from callback, but isn't working... Any help please? PreInvoiceSchema.pre('save', function(next) { ...
0
votes
2answers
39 views

jquery: Callback not received on clicking of button

I need to send a request on click of button but callback is not received on firing of click event of the button. Following is code snippet: $(document).ready(function () { var counter = 0; ...
0
votes
1answer
37 views

Python tkinter trace method

I am trying to activate callback function as the user type in to the tkinter entry box. According to effbot.org, You can use the trace method to attach “observer” callbacks to the variable. The ...
0
votes
0answers
17 views

P/Invoke Callback with variable arguments

A .h file contains the following signature: typedef void (RTMP_LogCallback)(int level, const char *fmt, va_list); void RTMP_LogSetCallback(RTMP_LogCallback *cb); I would like to use it in VB.NET ...
1
vote
2answers
64 views

CoffeeScript: making a callback more generic

I have some pretty simple code. Unfortunately, at the bottom of that code is a callback with some hard-coded jQuery selectors, and I'd like to find a way to bring them out. For the purpose of this ...
0
votes
0answers
28 views

How can I call a push button from another pushbutton in MATLAB

I have a simple GUI containing two pushbuttons, one to play the cam stream and the other to stop it. function Play_callback(hObject,eventdata,handles) Play1 = evalin('base','PlayCam1'); Play2 = ...
0
votes
1answer
34 views

Callback function in node.js. TypeError: Cannot call method 'emit' of undefined

I’m still trying to get the hang of callbacks. Can someone explain why I cannot update my webpage using the callback from setInterval? When I run the code, I get the error /home/pi/Programming/RC ...
-3
votes
0answers
13 views

'payments call back url' on face book apps [closed]

I am trying to set up a payments app for a repair service, where the pricing will be dynamic. I'm not great with computers and cannot understand the payments call back url that they are looking for. I ...
-4
votes
0answers
44 views

How to use jQuery callback when using .each()?

I was wondering how are we supposed to use callback properly when we are accessing elements through the .each() function? Since it's a little hard to explain I will show a video demonstrating my ...
7
votes
4answers
182 views

Implicit cast of Func<MyType> to MyType

Given the following class: public class MyType { public static implicit operator MyType(Func<MyType> wrapper) { return wrapper(); } } From the implicit cast of ...
0
votes
0answers
6 views

parsing json via jquery does not read/pass all strings

I have this json file with callback jsonHydro({ "categories": [ { "producerName": "Canon", "productName": [ { "kamera": "EOS 5D Mark III", ...
5
votes
1answer
64 views

node.js - why anonymous callbacks [closed]

I'm learning node.js, and have noticed that pretty much all callbacks are inlined as anonymous callbacks into the function. Is there a specific reason behind doing things this way? I think using a ...
0
votes
1answer
31 views

Using AsyncTask callback to contruct objects backing ListView

I am trying to figure out a way to get specific values that are needed for the objects displayed in a ListView. In the example below, I am building a list of users. I use an existing array to supply ...
0
votes
0answers
21 views

Roboelectric background thread synchronization

@Test public void testShows() throws InterruptedException { final CountDownLatch latch = new CountDownLatch(1); final TestCallback<ArrayList<CompleteShow>> call = new ...
0
votes
1answer
30 views

Read callback data in new thread C#

Can someone help me, I have one method that I call to "activate" callback method(which is set to send me changed data every second) and second method(which is "activated" by first) that runs every ...
0
votes
0answers
19 views

Why does -Djava.net.preferIPv4Stack=true disables localhost callback to work?

We got weblogic running on a server and I am using localhost:port to do a jndi lookup. This has been working until they put on -Djava.net.preferIPv4Stack=true For some reason, there is nothing ...
1
vote
1answer
33 views

Jquery wait between user defined functions

I have two functions, tick and tock. They cause 4 numbers to spin one direction then the other. Each number can ease at a different rate. I can call both functions but I cannot get the second (tock) ...
1
vote
1answer
23 views

Inject callback from a class method defined in a module

I want to mimic what AR does with after_save ..., if: -> { bar? } but I don't understand how I can change context to set self to the object. module MyModule extend ActiveSupport::Concern ...
0
votes
2answers
36 views

Tranferring data from a function to a callback function within a GUI in MATLAB

I have a GUI in MATLAB (created using GUIDE) which has a pushbutton callback and 2 edit boxes. The edit boxes are to be filled first after which pressing the pushbutton plots a figure on a pair of ...
0
votes
1answer
53 views

Jquery how to do a function after an ajax request

I have 3 ajax request that get a response from a web service, I then want to use these response and inject it into the document.load. When I try to inject the html noting changes. I think I need to ...
0
votes
3answers
74 views

Avoiding Lua Callback Hell

I work a lot with Lua and Corona SDK, and while I love it as a language, I've realised that my code can get quite messy as callbacks call callbacks and so on. I was wondering if there were any design ...
1
vote
1answer
24 views

To execute or not execute a callback in python

I am confronted with python 2.7 callbacks from a library that I use. I have to use some callback functions from Cherrypy auth examples in my code. (These callbacks return a function that can evaluate ...
1
vote
1answer
30 views

What to do when passing a parameter into a callback function conflicts with the callback's caller

I am using an ID3 reader script to retrieve data from audio files. The basic usage is: ID3.loadTags(file,function() { var attr = ID3.getAllTags(file).attribute; }); where the anonymous function ...
0
votes
0answers
14 views

Pushwoosh callback behaviour in Titanium for Android

I have one problem about Pushwoosh integration with Titanium for Android. All push notification is delivered successfully, the problem is the callback event. In iOS, the push notification callback ...
0
votes
1answer
49 views

Calling callback from node.js native code

I'm writing an add-on for node.js using c++. here some snippets: class Client : public node::ObjectWrap, public someObjectObserver { public: void onAsyncMethodEnds() { Local<Value> ...
3
votes
1answer
61 views

Google Maps load API script and initialize inside ember.js view

I'm trying to create a Ember View for Google Maps, and load the script in a on-demand manner, i.e. asynchronously Loading the API. I have two functions inside the view, one is used to load the Google ...
0
votes
0answers
19 views

phonegap android getPicture success/error callback is never fired

I'm using code provided with camera api documentation. When clicking on button, either camera or gallery pops up properly, I can take a picture or choose a photo from gallery but nothing happens ...
0
votes
1answer
47 views

Special callback handling with C++ dll

I have a C++ dll, which defines a set of callback function. This functions are called somewhere in the C++ dll. To handle this callbacks, the other side must overwrite these functions. So the C++ dll ...

1 2 3 4 5 94