1
vote
2answers
25 views

MFC C++ Edit Windows Controls in Callback Function

I got stuck at this part of my project. I have a Download dialog which when you double click listcontrol. I create it dynamicly and its use a static pointer to a Class which handles Download/Upload ...
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 ...
0
votes
0answers
43 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 ...
1
vote
4answers
67 views

Python - very simple multithreading parallel URL fetching (without queue)

I spent a whole day looking for the simplest possible multithreaded URL fetcher in Python, but most scripts I found are using queues or multiprocessing or complex libraries. Finally I wrote one ...
0
votes
1answer
68 views

TimerCallback not returning value C#

I am using System.Threading.Timer to create a timer that prints a string to a serial port and then reads from another serial port every second. I am trying to do this by sending arguments to my ...
2
votes
5answers
104 views

How to synch JavaScript callbacks?

I've been developing in JavaScript for quite some time but net yet a cowboy developer, as one of the many things that always haunts me is synching JavaScript's callbacks. I will describe a generic ...
1
vote
0answers
59 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 ...
2
votes
1answer
100 views

Using threading lock in ctypes callback function

I want to use a ctypes dll from a twisted application. Minimal example concocted here: from ctypes import * from threading import Lock lock = Lock() dll = windll.LoadLibrary('mydll.dll') l = ...
0
votes
1answer
64 views

Callback from different thread in NodeJS Native extension

I am newbie in nodeJS and node extension. I m writing a native extension for node js which will receives a callback on an virtual function OnEvent(param1, param2, param3). The code follows: bool ...
1
vote
4answers
37 views

Calback from new thread to class from which thread was initiated

I have a class from which I am calling a new thread. public class MainClass{ private void cleardata() { // do something on a separate thread new Thread(new ...
0
votes
1answer
99 views

Ruby: EventMachine and separate callback queues

EventMachine executes all operations in separate threads and all callbacks of this operations in one mainthread. It's very useful when you need reduce competitiveness in data processing between ...
2
votes
1answer
105 views

How can I implement callback functions in a QObject-derived class which are called from non-Qt multi-threaded libraries?

(Pseudo-)Code Here is a non-compilable code-sketch of the concepts I am having trouble with: struct Data {}; struct A {}; struct B {}; struct C {}; /* and many many more...*/ template<typename ...
-1
votes
1answer
58 views

Unable to use graphics after calling delegate

I am working on a feature on a large program. The feature requires a call to something that can be computationally intensive, and can take a long time. The result of the calculations - that are ...
0
votes
2answers
63 views

Show waiting notification till callback returns from thread

I am new to android and am stuck with this situation I am calling a thread from the Activity UI. The thread will return to a callback function after doing some background operation . Till then I ...
-1
votes
1answer
184 views

Java threading callback thread context

How do I ensure the callback is called within the context of the main thread? I'm using ActiveMQ and specifically, I'm trying to understand how to ensure a callback is executed within the context of ...
1
vote
1answer
112 views

can I call my callback function from opengl's display

I am trying to call a callback function from void display(void){ my_draw(&here_is_the_actual_drawing); } void here_is_the_actual_drawing(){ glVertex2f(x,y); } in main the ...
0
votes
1answer
62 views

OpenSSL identifying cookie verify callbacks with DTLS sessions/connections in multiple threads

I'm having a bit of trouble with my cookie generation/verification callbacks in a multithreaded server (connection per thread). The DTLS stuff requires these callbacks as far as I can tell; my worry ...
0
votes
1answer
66 views

set a deadline for each callback in an event-driven/ event-loop based program

In a typical ASIO or event-based programming library like libevent, is there a way to set a deadline for each callback? I am worried about possible infinite loops within the callbacks. Is there a way ...
0
votes
0answers
102 views

MVC wait blocks WCF callback

I have MVC WWW App connected to Logic App through WCF Service hosted on Logic App. One of controllers is calling async multiple methods on WCF, then waits ManualResetEvent to get response: //MVC WWW ...
0
votes
0answers
65 views

Values updated by callback method not reflected in main thread

I am working on a windows application in c#. I'll try to present an abstract view of a scenario: Windows App - Sends Requests to multiple external entities from the main thread. The responses are ...
1
vote
3answers
381 views

Java set a callback from ExecutorService

I have a fixedThreadPool that I am using to run a bunch of worker threads to achieve parallel execution of a task with many components. When all threads have finished, I retrieve their results (which ...
0
votes
0answers
191 views

using thread callback to fire event through timer

Ok I am using a vb.net dll class (not a form application). In this class I am using a method that creates a timer and in the end will call a method that will throw an event. timerDriver = New ...
0
votes
2answers
58 views

Callback to execute when a thread is finished

Disclaimer (fully editable/removable) I've done my homework but to the best of my recognition, I can't see the very thing I'd like to know (which is a bit surprising, so I'm sure that a kind soul ...
0
votes
2answers
72 views

Thread makes application halt

I'm currently trying to create a FileViewer control, and after I've added Items (Filenames with Icons, size, etc) to my ListView (Icon - Filename - Extension - Size) I also check if the file is an ...
2
votes
4answers
174 views

Is it bad form to use a generic callback?

I've got this code (well, something similar). private delegate void GenericCallback<T>(T Info); private void DoWork() { System.Threading.Thread Worker = new System.Threading.Thread( ...
1
vote
1answer
74 views

Dangling thread in wcf callback

I have wcf service that calls back a client after finishing some job. I have a couple of simple questions. If my client crashes or I close client app before the service finished it's job, what happens ...
0
votes
1answer
270 views

Callback from QThread in unmanaged dll to managed c++ Main thread

I want to make a callback from a thread created in an native dll to my managed wrapper, I have successfully created my thread and made calls via Qt.s framework signals and slots. How can I make a ...
0
votes
1answer
465 views

General query about Callback functions and Threads

I have a general question about a threads and callbacks. Say for example we have a thread running continuously along with a main program. The main program has registered a callback function with the ...
0
votes
0answers
125 views

How to access UI thread in C++/CLI?

As the title, i have three files: [main.cpp] #include "stdafx.h" #include "WebRequest.h" #include "LoginUIThread.h" int main (array<System::String ^> ^args) { LoginUIThread^ r1 = gcnew ...
0
votes
1answer
355 views

How do you write a tornado web server that can accept multiple clients at once?

I'm writing a tornado web server and I'm trying to keep it from blocking on one function. class TokenHandler(tornado.web.RequestHandler): @tornado.web.asynchronous def post(self): ...
0
votes
1answer
883 views

WCF Timer based service not calling client back

I want to make a WCF timer service where clients can register in order to get called back from the service after a certain time has passed. The problem is that the client doesn't get called back. No ...
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 ...
3
votes
1answer
122 views

Seg Fault Callback Issues in a C++ Class Extended in Python

I'm wrapping an abstract C++ class with SWIG for Python, and am running into seg fault issues. Here is a simplified version of the code I'm dealing with. ("Changes" is an enum.) Foo.h class Foo { ...
0
votes
1answer
428 views

How does Android perform callbacks on my thread?

I see similar questions, but the answers vary and are not unified. Consider a MediaPlayer and a registered listener (e.g. for completed playback, or onPrepared, etc.). I tested it and the callback is ...
1
vote
3answers
809 views

How do I avoid busy loop in Java Thread with callback function

I am trying to figure out how to eliminate a busy loop in a thread I have in Java. The thread does nothing but wait for a callback from the Listener class. The thread class looks something like ...
-1
votes
1answer
669 views

Threads in VB.NET

Well, I guess that I'm not the first who ask this, but what is the easiest way to use threads in VB.NET? I mean, I need to download some string from a remote server and then to show that string in the ...
2
votes
1answer
84 views

Do I need to manually implement threading on the server side when implementing WCF callbacks?

I have a WCF Singleton service with Attributes [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Multiple, InstanceContextMode = InstanceContextMode.Single)] that uses wsDualHttpBinding and allows ...
1
vote
1answer
389 views

Response callback on a different thread

Is the Callback supposed to be called on a different thread? Using this code: client.ExecuteAsync<List<IngredientDto>>(request, Response => { textBox1.Text += ...
8
votes
5answers
1k views

Android BroadcastReceiver or simple callback method?

In my projects I am using BroadcastReceivers as a callback from a long running thread (eg. notify the activity that a download was finished and send some response data from a Worker Thread so that the ...
0
votes
1answer
235 views

Wait for a variable to exist then do something in javascript

I have a script that will be executed before the variable it must read will be loaded.. this is my script that will be executed first funcThatWaits(varToWait).ready(function(){ //callback ...
0
votes
1answer
156 views

Handling COM Callbacks in C# Client

Here is how the application is designed - I have a COM server raising events on certain conditions. I have a C# client UI which is supposed to handle these events raised by this COM server. There ...
3
votes
3answers
196 views

Better waiting syntax in Java

I have an animation running in the background, and I want to register a callback for when it is done. The animation is not a standard java animation -- it is a c animation that is accessed through jni ...
4
votes
2answers
624 views

TPL How to Perform a 'Call-Back'

I have a small application that needs to test SQL connection strings for a number of connections (each done one-at-a-time). To do this I set the ConnectionTimeout = 5 temporarily to avoid a long wait ...
1
vote
3answers
868 views

Java task queue, threadpool and threads with callback to inform when a new task can start

I have tried to find a way how to load several web pages in multiple threads with a certain maximum limit of threads, in a way such that a new page is loaded when one finish. There should also be ...
1
vote
0answers
159 views

Java Process Threading issue

My problem involves Process and Runtime, and attempting to run this while allowing a main Java Swing GUI to update a status bar, so here goes: I've been working on an internal development tool for my ...
0
votes
2answers
234 views

Registering an event in a thread with a callback function

I am modifying my server such that every time it accepts a connection it should register a timeout event in a thread with a callback function. The timeout can be any number. There is only one timeout ...
1
vote
1answer
2k views

Threading with Callback example does not work.

I am working on this example, but I am unable to mesh the callback and the threading. What I want is this. 1) Press button 2) Start the progress bar running 3) Call to a new thread to perform some ...
1
vote
1answer
177 views

External thread callback to a session scoped Spring bean

I have a Spring Web MVC application where i need to use an external device driver which returns information in an asynchronous manner every time the device gathers some new data. We need to pass an ...
0
votes
1answer
427 views

jquery: wait for a script to finish, then start another one

I am trying to make a twitter box with sliding tweets in jquery. For the sliding parts i am using this: http://jquery.malsup.com/cycle/ and for retrieving the tweets this: ...
1
vote
2answers
836 views

Thoughts on a different way to running a win32 event loop without WndProc?

Whilst messing around with multithreading, callbacks, win32 api functions, and other troublesome troubles, I received an idea event. (hehehe) What if, instead of defining a global (or static when ...

1 2