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.
6
votes
0answers
69 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 ...
6
votes
0answers
796 views
Libev, How to pass arguments to relevant callbacks
I'm trapped in a situation of argument passing in libev.
Usually, libev receives packages in a function like *receive_callback*, that's OK, but in practice, we need to dispatch a relative ...
4
votes
0answers
1k views
Delphi XE2 datasnap callback example
I am trying to create a small example of how to exchange objects using calbacks, but I am experiencing some problems.
When server creates and broadcasts objects, some clients callback ...
3
votes
0answers
115 views
OpenGL Tessellation Callback Not Executing
I used the examples here to move my tessellation callbacks to a different class.
The code compiles, but the callback code never executes.
Callback Class:
template <class Class, typename ...
3
votes
0answers
316 views
Android camera surfaceChanged being constantly called
I am developing an app that uses the camera. I have made the preview class like this:
public class MyPreview extends SurfaceView implements SurfaceHolder.Callback, Camera.Preview Callback{
...
...
3
votes
0answers
81 views
Signpost callback works on Android Emulator with API 10 but not API 15 or 16
I believe that I have correctly coded and setup the Signpost call to Twitter. It all works perfectly fine when running on API 10 (through Emulator and actual phone). But when I try the exact same ...
3
votes
0answers
116 views
Facebook graph api's invite friend accept callback (iOS)
I couldn't find any answer to my question:
On my facebook iOS app, if the user invites his friends (via the method: apprequests thing), is it possible for me to know whether/how many friends answered ...
3
votes
0answers
391 views
AVAudioPlayer started from a C++ callback calls audioPlayerDidFinishPlaying somehow late
could you please give me any tips on where the problem might be? I'm very new to ObjC, so I sort of got stuck.
I use a C++ built library which generates various sounds and I would like to play these ...
2
votes
0answers
58 views
Obtaining pointer to the base class of SWIG object
I am using a library written in C++ and exposed to Python through SWIG. The class hierarchy looks like this:
PublicLib:
MyBaseClass
PrivateLib:
MyAbstractClass
SomePrivateSubclass : ...
2
votes
0answers
146 views
Soundcloud popup_callback.html not redirected to callback url after Facebook login
my first post after years of reading :P
I think that are some problem with the page of soundcloud https://soundcloud.com/popup_callback.html
My app uses the soundcloud api and work fine, but when my ...
2
votes
0answers
352 views
Wrap a C++ Function Pointer Callback with SWIG
I'm working on porting a C++ library used in desktop and iOS applications to Android. I'm using SWIG to create the JNI code and I'm about 90% of the way to where I need to be. The only issue I have ...
2
votes
0answers
126 views
Open aspx Page after WCF Callback
I've the following problem:
I have to implemented a kind of a chat application. Therefore I use ASP.NET 4.5 and WCF. When I'm start click on the person I want to chat with, I call a wcf webservice. ...
2
votes
0answers
71 views
WCF service Return to different clients
I have a WCF Service that I'm using to distribute files to clients that works in the following manner:
Clients send a file to the service
Other clients poll the service asking for files
If the ...
2
votes
0answers
78 views
Debugging unmanaged callback problems
Apologies in advance here for the length of the question.
I have a closed source and undocumented COM object - an unmanaged DLL - that I'm attempting to integrate into a Windows service written in ...
2
votes
0answers
155 views
Cordova/phonegap JS callbacks not invoked
I have made a cordova project via the create script and have created a plugin.
However, for some reason, the JS-callbacks are not invoked whenever i send an pluginresult.
I have checked the ...
2
votes
0answers
331 views
Passing C++/CLI Class Method as C function pointer
I have a third-party C library that provides this header:
//CLibrary.h
#include <Windows.h>
#include <process.h>
typedef void (WINAPI *CLibEventCallback)(int event, void *data);
...
2
votes
0answers
117 views
Sometimes main BPEL process doesn't receive a callback message from asyncronous process
Sometimes main BPEL process doesn't receive a callback message from asyncronous process.
Asyncronous process invokes the callback and completes successfully, but the main process stays in active ...
2
votes
0answers
651 views
Grab IP address from Google via JSON export
You can use certain web services that export a user's IP address in JSON format -- valuable when paired as a javascript callback-- but the services I've found seem to be unreliable.
The two services ...
2
votes
0answers
39 views
Facebook Stack changed redirect method on final callback
We have been using some very limited browsers on dumb feature phones and up until 2 weeks ago it was working perfectly. At that point the last redirect no longer issues a 302 redirect but uses ...
2
votes
0answers
385 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
0answers
138 views
What are the advantages of using an errback?
Programmers seem divided on how to get asynchronously notified about an error.
Some programmers prefer to use a callback with two arguments: a value and a boolean which tells whether the value isn't ...
2
votes
0answers
135 views
What is the best way to structure those jquery call backs?
I am new to jquery and recently have been amazed how powerful those call backs are. But here I got some logic and I am not sure what the best way is.
Basically, I got a bunch of tables in web sql ...
2
votes
0answers
219 views
Callback File System: eldos.cbfs.ECBFSError: Access is denied
I've requested trial license for Callback File System and tried to write simple application using java! So, I've written next few lines and run it and received exception eldos.cbfs.ECBFSError: Access ...
2
votes
0answers
243 views
jQuery ajax call does not launch callback when data type is 'script'
For example with jQuery 1.5.2 or smaller this code will log 'ololo' in FireBug console:
$.get(
'some_url',
{ data: 'some_data' },
function() {
console.log('ololo')
},
'script')
Same with ...
2
votes
0answers
1k views
add param to FB.login() callback function if no session is returned by FB.getLoginStatus()
i'm having trouble building a function fbPostToWall(picUrl) that uses FB.getLoginStatus() to post a received picture url to a users wall. This part works fine as there is a session response:
function ...
2
votes
0answers
214 views
How do you specify the channel .NET remoting will use to perform a callback
I have a client (and server) with 2 channels set up on different protocols, lets say X:// and Y://.
If I call a service (over remoting) from client (C) on a server (S) that needs to perform a ...
2
votes
0answers
79 views
How to retrieve salt if using HTTP authentication scheme?
Is it possible to use salted password along with standard HTTP authentication schemes ( FORM or DIGEST ) ?
I am using GlassFish, and when I request a protected page, the form or the answer with the ...
2
votes
0answers
1k views
Tomcat Comets application returns .jsp page instead of weather data
I have implemented the Comets tutorial at http://www.ibm.com/developerworks/web/library/wa-cometjava/#N100CC
It seems like I am getting data returned from the server using the Comets technique - i.e. ...
1
vote
0answers
13 views
Distinguishing between 'destination of udp packet unreachable' and 'received packet with payload of length 0' in Objective C
Currently, when I send a udp packet to an unreachable destination (e.g. an unbound local port), I get an event that I can't seem to distinguish from receiving a zero-length udp packet.
I am creating ...
1
vote
0answers
30 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 ...
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
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
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 ...
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',
...
1
vote
0answers
50 views
WinUSB asynchrous call in .NET with PInvoke
I have programmed a microcontroller with USB and connected it a PC using WinUSB. I am able to communicate with my uC in c++ and in VB.NET using pinvoke with synchronous (blocking, overlapped = NULL) ...
1
vote
0answers
48 views
Undefined variable outside of PhoneGap globalization callback
I'm playing around with PhoneGap (Cordova version 2.6.0) currently and my JavaScript knowledge is unfortunately really rudimentarily.
Im trying to use the globalization object of PhoneGap to get the ...
1
vote
0answers
54 views
Facebook Login Dialog - “Close” button doesn't fire callbak
i have this issue.
I have this code in my facebook Tab page and as you can see i need some permissions when users come. The problem is that when I click on "Close" button, the callback in FB.login ...
1
vote
0answers
19 views
Will google bot read the data which are fetched via jquery event -doucument.ready
We have an online book store which is powered by asp.net. The front page is little bit more resource demanding as featured books from many category are shown.
We are using 3 listview for showing ...
1
vote
0answers
58 views
use callback to allow multiple connections to socket?
I am trying to create a VB.Net server program that has an external link to process data. The server will wait on port 7878 for a request to be made from a client. When the server receives a request ...
1
vote
0answers
77 views
TinyMCE, save_callback and onSaveContent
I'm using the tinyMCE editor with some custom plugins.
The problem I have is when I save the content, I would like do some work before sending the HTML to the server.
I know there is two functions to ...
1
vote
0answers
24 views
fire matlab uitable cellselection callback on mouse up
I have a uitable with a checkbox column.
I want to toggle the checkbox status for each selected cell. Clearly, that does not work when the callback function executes when the user is still adding ...
1
vote
0answers
60 views
Placeholder alignment - Getting CallbackOnCollectedDelegate error
In a windows form that I have created in VB.NET, for one of its text boxes, I am using a code that simulates a placeholder in the textbox, i.e, a text that is, by default, there in the text box, and ...
1
vote
0answers
63 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 ...
1
vote
0answers
29 views
Passing html source to a plugin and getting click event
I have a JavaScript plugin which plots a chart (row-wise items shown) as per a json array passed as input.
There is a certain functionality inside the chart i.e. when a row item is clicked, I trigger ...
1
vote
0answers
77 views
jQuery trigger callback function with vclick on jQuery Mobile
I am using jQuery Mobile v1.2.0 and i'm attempting to implement a callback function with the jQuery trigger function on a click/vclick on a link.
This is my callback function and the trigger below ...
1
vote
0answers
167 views
Ctypes callback functions not working with embedded python 3.1 (AMD64)
I try to communicate with a PLC through a DLL (C API interface distributed by the manufacturer of the PLC). I'm using Python 3.1.4 who is embedded as a scripting environment in an other software (x64 ...
1
vote
0answers
19 views
What is an average Facebook credits dialog CTR?
We're running a game on Facebook with approx. 300K MAUs. However, we've noticed that there are very few credits payments.
So I looked into this and noticed that the CTRs seem really strange.
The ...
1
vote
0answers
99 views
Inner function doesn't see the parameters of the outer function (JavaScript)
I'm using the crawler module for Node.js (npm install crawler) in the most usual way, but some weird things are happening:
var Crawler = require('crawler').Crawler;
var c = new Crawler({
// This ...
1
vote
0answers
194 views
Javascript callback to VB.net code behind
Previously, I asked a question that had a setup that looked like this:
function checkValidate_onBlur(me) {
var args = me.value;
performCallback(args, "");
return false;
}
...
