Multithreading is how work performed by a computer can be divided into multiple concurrent streams of execution (generally referred to as threads).
-2
votes
1answer
61 views
Printing Even and Odd using two Threads in Java
I tried below code. I took this piece of code from some other post which is correct as per the auther. but when i try running, it doesnt give me exact result.
This is mainly to print even and odd ...
0
votes
0answers
5 views
Why application error EOFE Exception
Sr guys , I'm very bad English and I have a question with EOFE Exception to my project . Here my project :
public class MainActivity extends Activity {
EditText user, pass;
Button btnLogin;
...
0
votes
1answer
26 views
Windows 64 bit application with ever growing thread count
I have a Windows 64 C++ application which acquires data from a custom USB device. It is built using Qt 4.8.
It works fine and there are no , repeat no memory leaks that I can see. However, I did ...
0
votes
3answers
67 views
+50
Mulithreading: executing method calls only after finished executing other method
I am trying to process method asynchronously, as per requirements, once the first method has completed, only then the second method should start executing. The Problem is first method itself has code ...
0
votes
0answers
6 views
delphi - class static method, static var in multi thread application
I relative new with delphi XE2, I want to know about something, if I have like this code
TSomeClass=class
class procedure SomeProcedure();static
end;
As my understanding, SomeProcedure() will ...
2
votes
1answer
38 views
Why ThreadPool thread doesn't print anything to console unless main thread print first
I am very confused about below code snippet.
//Console.WriteLine("Main thread: Doing other work here...");
ThreadPool.QueueUserWorkItem(
state =>
{
...
-1
votes
0answers
31 views
TPL creating 30 threads and not executing more than 2 threads [closed]
As part of a project, I had to create a program that would compile a set of c# files from a folder at runtime.
I managed to do this by placing the same in a for loop. I tried to parallelize using ...
0
votes
1answer
60 views
How to deal with slow Web services?
I have created a webserivce using C# on .NET and I'm consuming the same in an android application. At times while testing I notice that the web service is annoyingly slow and does not show results for ...
0
votes
1answer
18 views
How Do You Pass New URLs to a Scrapy Crawler
I would like to keep a scrapy crawler constantly running inside a celery task worker probably using something like this. Or as suggested in the docs
The idea would be to use the crawler for querying ...
0
votes
0answers
26 views
asynchronous call in python
I am trying to call a function from my ui thread which fetches data from database. This takes a lot of time and I am trying to keep the ui responsive during this time.
I am using the following code:
...
1
vote
1answer
26 views
How to Interrupt/Stop/End a hanging multi-threaded python program
I have a python program that implements threads like this:
class Mythread(threading.Thread):
def __init__(self, name, q):
threading.Thread.__init__(self)
self.name ...
-5
votes
1answer
87 views
background worker blocking main thread .net [closed]
We are using background workder thread (C#.net) for performing some tasks asynchronously in windows application (developed using .net 3.5) ....Registered the Do_Work event (invoked by windows timer by ...
0
votes
0answers
15 views
Draw a Path as animation on canvas
I have to ask again because no one answered my question before (my problem is NOT a duplicate of How to draw a path on an Android canvas with animation?). Please read it carefully and help me, if ...
1
vote
2answers
331 views
Correct Usage Of System.Threading.Timer
I stumbled across some code similar to below:
private void SomeCallBack(object state)
{
lock (_lock)
{
try
{
if (_timer == null)
...
0
votes
1answer
52 views
How to create a cyclic exchange of three threads?
How to create a cyclic exchange of three threads? That is: first thread must send data to second, second to third and third thread must send data to first.
I wrote some code, but threads exchange in ...
0
votes
0answers
12 views
executing the method only once in the thread?
Good evening, I would like to run this thread, but when sending a message is duplicated by "onMessageReceivedListener.onMessageReceived (message); within" onMessageReceivedListener "" but thanks to ...
0
votes
2answers
24 views
Do I need to use multiple AsyncTask subclasses?
My app has FTP functionality and now I want to implement a ProgressDialog for the various operations (Connect, download, upload, file list etc.)
I found this snippet here on stack and it seemed like ...
1
vote
2answers
62 views
Java arraylist of threads
I have an array of n threads, each one holds a number of 1 to 100.
For each iteration all of the threads needs to check their neighbors.
For thread i
IF thread[i].number > thread[i+1].number ...
2
votes
1answer
44 views
Function for the thread within a class in C++
I'm having troubles with creation of the function, that should handle new thread. When I create it outside of the class, everything works allright, but when I want to create it inside a class, I can't ...
0
votes
1answer
12 views
Android - Using Connectivity Manager in a Fragment
Okay so i had the problem of network usage in UI Thread and now using AsyncTask. I am using Fragments and have a problem.
When putting this line:
ConnectivityManager connMgr = ...
0
votes
4answers
38 views
Android network usage on main thread
So, i have been creating and application for a client and got to the network part. I am currently removing the targetSDK tag from the manifest so i dont get a MainThreadException. I have seen people ...
0
votes
0answers
32 views
Parallelized copying of Python objects
We have 100 large Python objects in memory (each object is mix of dictionaries, Python standard values (e.g., integers), NumPy objects, Python classes), and we need to copy the most of them "by ...
0
votes
0answers
15 views
Multiple simultaneous stopwatches in c#
I've got 16 different toggle buttons. They need to toggle a stop watch. When button is on, stop watch starts, when button turned off, stop watch stops and resets. This gets complicated when there 16 ...
0
votes
1answer
180 views
Why does this simple c++11 threading-example fail, when compiled with clang 3.2?
I can't figure out what I'm doing wrong here. This very short program:
#include <iostream>
#include <string>
#include <atomic>
#include <thread>
using namespace std;
int
...
2
votes
1answer
77 views
Mapping of one collection to another in multiple threads
I have a collection of objects, which I want to map to another collection, doing similar routine operations for every element. I'd like to do these atomic routine operations in parallel threads and ...
0
votes
1answer
41 views
Manage AFNetworking multiple requests with AFHTTPClient enqueueBatchOfHTTPRequestOperationsWithRequests method
I want to create a table view slide menu like FB or Linkedin, I mean dynamically, so I have to make some requests at the same time. I am using AFNetworking. with a custom AFHTTTPClient which its ...
0
votes
0answers
22 views
VB6 handling Multiple connections (Multi-Threading)
I am wondering what is the best stable way to handle multiple connections at the same time?
I am using vb6 and currently using winsock api's no Winsock control. I tried that before and its not multi ...
0
votes
1answer
19 views
Thread.Join never returns in FormClosing event if using Invoke method in worker thread
I am writing an application using multithread. The application basically has a UI and a thread doing some work in the background and updating the UI. When I close the form, In the formclosing event, I ...
3
votes
2answers
648 views
Hudson SCM Polling Thread hungs while polling
We use Hudson for our continuose build environment. For some reason, the thread for SCM Polling hungs somethimes after a while. I've experiemented a lot with the settings, but nothing seems to really ...
1
vote
2answers
154 views
Identifying a thread as a “Remote thread”
I'm working on a process which analizes what another process does.
It checks the CPU, memory usage, threads creating and dying, etc.
Unfortunately I have an antivirus installed on my computer which ...
1
vote
3answers
27 views
Passing messages between processes
I need to write a simple function which does the following in linux:
Create two processes.
Have thread1 in Process1 do some small operation, and send a message to Process2 via thread2 once operation ...
1
vote
1answer
37 views
Is asynchronous non-blocking event driven approach the only way to “asynchronous programming”? [closed]
I'm bit confused about the terminology here. Let a program consists of some tasks, conceptually distinct:
In the asynchronous programming model tasks are interleaved with one another, but in a ...
1
vote
2answers
66 views
Java current thread
I'm confused about what is the current thread during the execution of a multithreaded program.
public class CurrentThread {
public static void main(String[] args) {
// FROM HERE: will ...
0
votes
2answers
29 views
How do I use methods from an existing running thread in different Activities
I got the following problem. My App has 5 activities and works as TCP-Client. If I start the App, activity 1 gets started and establishes a connection with a server.
This activity owns a listener ...
16
votes
11answers
7k views
Thread Pool vs Thread Spawning
Can someone list some comparison points between Thread Spawning vs Thread Pooling, which one is better? Please consider the .NET framework as a reference implementation that supports both.
6
votes
4answers
912 views
How Dispatcher differs from the background thread?
How does the Dispatcher concept in .NET 3.5 and WPF differ from the background thread in .NET 2.0 ?
For example what will be difference between statements below:
delegate.Invoke/BeginInvoke
AND
...
0
votes
1answer
28 views
Synchronize Threads triggered by ScheduledExecutorService
I have the following test project:
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.ScheduledExecutorService;
import ...
30
votes
8answers
27k views
ExecutorService, how to wait for all tasks to finish
What is the simplest way to to wait for all tasks of ExecutorService to finish? My task is primarily computational, so I just want to run a large number of jobs - one on each core. Right now my setup ...
1
vote
3answers
705 views
Task in vxworks
When we doing taskSpawn a task is creating in vxworks. What is actually a task. Is there any relation with thread.
In my understanding vxworks is thread based Operating system.
Can some one please ...
3
votes
5answers
1k views
Windows C++ Process vs Thread
In Windows C++, createThread() causes some of the threads to slow down if one thread is doing a very CPU intensive operation. Will createProcess() alleviate this? If so, does createProcess() imply the ...
10
votes
5answers
14k views
How to get return value when BeginInvoke/Invoke is called in C#
I've this little method which is supposed to be thread safe. Everything works till i want it to have return value instead of void. How do i get the return value when BeginInvoke is called?
public ...
0
votes
0answers
124 views
Action being performed on this control is being called from the wrong thread. Marshal to the correct thread using Control
got a bug in the below code as shown below
Action being performed on this control is being called from the wrong thread. Marshal to the correct thread using Control.Invoke or Control.BeginInvoke to ...
1
vote
2answers
64 views
How to check thread before closing program?
Well, I have a main thread and one more additional. Now I need to check additional thread before closing the program and if it's running - ask 'terminate it or not', else - just close the app.
1st ...
0
votes
0answers
14 views
socket connection reseting after client disconnect
Good day all
I have a java server which can support multiple clients via threads.
But after my first client disconnects my server restarts and and keeps on restarting.
Here is my code for the server
...
0
votes
1answer
16 views
How can we see the threads in Celery?
I am trying to set a different number of concurrent threads in Celery using --concurrency=1 (based on Workers Guide).
Anyway, when I run the daemon (celeryd ... --concurrency=1) I don't know how to ...
1
vote
2answers
316 views
Reusing connections between threads in Ruby / replacement for Net::HTTP::Persistent
I'm running a multithreaded daemon where an instance of ruby Mechanize (which contains a Net::HTTP::Persistent object), might be used and run by one of many threads. I'm running into tons of problems ...
0
votes
3answers
587 views
Using cvQueryFrame and boost::thread together
I need to call cvQueryFrame (to capture a frame from a webcam with opencv) instead a thread created with boost. Here is a little example code:
void testCVfunc(){
IplImage* frame;
CvCapture ...
0
votes
2answers
59 views
Continue executing another thread
I'm currently playing with WinAPI and I have proceeded to threads. My program has n threads which work with each other. There is one main thread, which writes some data to specific memory location and ...
1
vote
4answers
39 views
iOS - Best practice for handling network response cross ViewControllers
For example,
There are 3 sequencial view controllers, A, B, C, in the navigation stack.
After sending an async network request in view controller C in the background thread,
User may go back to B or ...
0
votes
0answers
15 views
Is multithreaded upload permitted for dropbox?
I am trying to get multithreaded chunked upload working (the main idea is that we download a big file to our server by chunks (only keep them in memory until they are uploaded) and redirect them to ...





