Multithreading is how work performed by a computer can be divided into multiple concurrent streams of execution (generally referred to as threads).

learn more… | top users | synonyms (8)

8
votes
3answers
11k views

Android - Loading, please wait

Is there a standard "Loading, please wait" dialog I can use in Android development, when I invoke some AsyncTask (downloading some data from remote service for example)?
1
vote
1answer
29 views

How to notify worker thread that UI is modified using Handler.Post()?

I have a worker thread and occasionally i send updates to the UI Thread using Handler.Post(). In some cases i need worker thread to wait until Handler.Post() executed on UI Thread and the view is ...
1
vote
1answer
14 views

How would you implement a save thread cooperation with signals in ruby 2.0?

I just began to work with threads. I know the theory and understand the main aspects of it, but I've got only a little practice on this topic. I am looking for a good solution (or pattern, if ...
0
votes
1answer
48 views

How to compare AtomicBoolean with boolean value in java

I'm trying to deploy TTAS in a multi-threading application in java, using this code: AtomicBoolean state= new AtomicBoolean(false); void lock(){ while(true) { while(state.get()) { ...
3
votes
3answers
2k views

C++11 thread_local in gcc - alternatives

As I can see at: http://gcc.gnu.org/projects/cxx0x.html thread_local keyword is unfortunately unsupported in gcc yet. Are there any alternatives for that? I don't want to use boost library.
0
votes
1answer
20 views

Thread doesn't wake up after join

I've got a GUI interface which has a start and a cancel button. After starting, the main thread which is the GUI thread, is creating a second thread which will do the actual work. When pressing the ...
0
votes
2answers
26 views

WPF starting up interfaces without freezing the GUI

I know there is a bunch of threads about initializing stuff in a different thread so you dont need to freeze your UI. But in my case this initialization involves creating a lot of plots (polylines in ...
1
vote
3answers
4k views

How to start an activity from a thread class in android?

I am extending a thread class and from that class I want to start an activity. How to do this?
12
votes
6answers
4k views

How to allocate thread local storage?

I have a variable in my function that is static, but I would like it to be static on a per thread basis. How can I allocate the memory for my C++ class such that each thread has its own copy of the ...
-2
votes
1answer
71 views

Thread inside a System.Timers.Timer method

I have the following scenarios using System.Timers.Timer. Create a Timer object and assign the method _JobListener.Enabled = false; _JobListener.Elapsed += (this.JobListener_Elapsed); Within ...
1
vote
1answer
28 views

Current thread not owner exception

in my application i am using a code that run a batch file, on executing it i am getting a exception i.e. current thread is not owner. Here i want to mention that my application is based on eclipse ...
0
votes
2answers
27 views

Tracking down modifications to adapter data not on UI thread

I have just inherited a very large code base of probably around 100 activities. It seems the past developers didn't understand how to only update adapter data on the UI thread and remember to notify ...
1
vote
2answers
23 views

JUnit test not executing all threads created within the test

I wrote a simple example for threading which generates tables for numbers starting from 1 to 20. when I tested it with main method it executes all the threads (prints all the messages), while all ...
1
vote
1answer
37 views

Locking by name (mutex alternatives)

For locking by name is any alternative to using named Mutex? The locking is for Web application to prevent performing an operation many times in parallel on resource with same name so I need to lock ...
1
vote
1answer
26 views

UIGraphicsImageContext leaks when backgrounded

Supposedly the UIKit calls are thread safe as of iOS 4, but when I try to render a PDF page in a background thread and pulling out an image from the view, I get a ton of leaks. As soon as I put it in ...
0
votes
2answers
1k views

How to Stop Current Playing Song When using one thread with JLayer?

I recently used a solution to the one-thread-at-a-time problem whe using Jlayer to play mp3 songs in Java. But this solution by Kaleb Brasee didn't hint at how you could stop the player, i.e how could ...
7
votes
8answers
3k views

How to let Timer skip tick if the previous thread is still busy

I created a windows service, that is supposed to check a certain table in the db for new rows every 60 seconds. For every new row that was added, I need to do some heavy processing on the server that ...
0
votes
2answers
52 views

How to update the UI in background thread without using mainthread

I am doing one application in which i got one HTML string in background thread. I want to load the webview using that HTML string in background. If I load that web view on background, the app ...
13
votes
1answer
169 views

Static local variable initialisation in multithreaded environment

Suppose there is a function (member function possibly) SomeType foo() { static SomeType var = generateVar(); return var; } How var will be initialised if foo will be called 'for first time' ...
2
votes
4answers
61 views

Using 'this' versus another object as lock in synchronized block with wait and notify

I have two blocks of code, one waits for the other to notify it. synchronized(this) { wait(); } and while(condition) { //do stuff synchronized(this) { notify(); } } ...
3
votes
6answers
108 views

Multithreading efficiency in C++

I am trying to learn threading in C++, and just had a few questions about it (more specifically <thread>. Let's say the machine this code will run on has 4 cores, should I split up an operation ...
0
votes
3answers
42 views

Threads and linq data context

This is my code: DatabaseDataContext context = new DatabaseDataContext(); var sourceList = (from q in context.Table1 where col1< 2000 select q).ToList(); foreach( Type x in sourceList) { var ...
1
vote
0answers
38 views

Workflows works slowly

I have a problem with workflow. I use "State Machine Workflow" in project. Over time more and more workflow created, and application works slowly. After restart project application works normal, but ...
0
votes
1answer
38 views

qt blocking connection deadlock

In my code a worker thread emits a signal. From Qt Docs: Qt::BlockingQueuedConnection - Same as QueuedConnection, except the current thread blocks until the slot returns. This connection type ...
0
votes
2answers
31 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 ...
35
votes
20answers
7k views

Which programming language makes concurrent programming as easy as possible?

If you want to create programs with threads/processes that run parallel you have to learn about many stuff, like race conditions, locks, semaphores, monitors, deadlocks .... Is there a language that ...
-1
votes
3answers
56 views

Call a function from thread

I am using the below code to call a method from thread function.It's not working.Please help me to do this. DataTable dt = get_data(Convert.ToInt32(Start_From), Convert.ToInt32(End_To)); foreach ...
0
votes
1answer
25 views

Close listening socket in python thread

I have a problem trying to learn about sockets for network communication. I have made a simple thread that listens for connections and creates processes for connecting clients, my problem though is ...
0
votes
1answer
72 views

How to watch my Thread variable from Main class?

I have that code: Main class: public class myTest { public static void main(String[] args) { try { Thread t1 = new myThreadClass("thread 1"); t1.start(); } catch ...
0
votes
1answer
14 views

Is there a version of ereporter for Python 2.7

I'm a big fan of the Google App Engine ereporter module. It sends you an email every day with all the errors you logged. I'm creating a new app, and it defaulted to Python 2.7 and multithreaded, and ...
-6
votes
1answer
52 views

Multithreading concept with a example [closed]

I want to create a multi thread program to process some operation. I am new for this concept that's i totally confused where i start.Please help me to do this.If you can give me a simple multi thread ...
0
votes
1answer
40 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 ...
2
votes
2answers
52 views

Sleeping barber, semaphores?

I've been trying to solve this for two days now and I finally give up, I'm posting my code here with the hope that some fellow human can provide me with what I have been missing, because I think I am ...
1
vote
2answers
36 views

Java ME Can't restart thread

I have the following thread: public void start() { isRunning = true; if (mainThread == null) { mainThread = new Thread(this); ...
65
votes
4answers
30k views

C# version of java's synchronized keyword?

Does c# have its own version of the java "synchronized" keyword? I.e. in java it can be specified either to a function, an object or a block of code, like so: public synchronized void ...
0
votes
3answers
26 views

Overloading the Main thread

In one activity of my app I make a bunch of edit text fields dynamically and then set them with some text from sharedpreferences. I realise that this is a bit much for the main thread to handle which ...
0
votes
4answers
52 views

How to get attributes of running Java Thread?

I have that code: Main class: public class myTest { public static void main(String[] args) { try { Thread t1 = new Thread(new myThreadClass("thread 1"), "thread 1"); t1.start(); ...
0
votes
1answer
42 views

iOS Application - How To Check Server For Updates Every 60 Seconds?

I'm currently developing an application that needs to constantly check the server it's associated with every 60 seconds for any updates that may have occured. The server side of it is fine and not a ...
0
votes
0answers
37 views

why doesnt perl thread kill doesnt work

i was playing with this code, from the way the beep is sounding, once the program starts it doesnt stop. I suspect the problem is with $thread->kill('KILL')->detach; it doesnt seem to be ...
2
votes
1answer
395 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
2answers
1k views

How do you use a TimerTask to run a thread?

I'm struggling to find documentation for the TimerTask function on Android. I need to run a thread at intervals using a TimerTask but have no idea how to go about this. Any advice or examples would be ...
1
vote
1answer
25 views

JavaFX Update progressbar in tableview from Task

I know Task has a method updateProgress, I would need to bind progressbar to task, however I cannot do that, as I do not have progressbar as an object. My program has a TableView. Once user enters ...
1
vote
2answers
35 views

performance wise, what is better: AsyncTask or simply create a runnable? [closed]

I am currently working on an Android project which loads a lot of pictures onCreate. To make sure the UI doesn't get blocked I have the option to put it in a runnable or an AsyncTask. What is ...
8
votes
8answers
8k views

Reliably stop System.Threading.Timer?

Well I've searched a lot for a solution to this. I'm looking for a clean and simple way to prevent the callback method of a System.Threading.Timer from being invoked after I've stopped it. I can't ...
1
vote
1answer
95 views

program is not ending smoothly in multithreading

I am creating some threads in my program .Here i used join method so that main thread will wait for all my threads.But whenever i am running this program it is not getting completed all the info ...
2
votes
4answers
2k views

QFuture that can be cancelled and report progress

The QFuture class has methods such as cancel(), progressValue(), etc. These can apparently be monitored via a QFutureWatcher. However, the documentation for QtConcurrent::run() reads: Note that ...
3
votes
5answers
71 views

Atomic Operations and multithreading

Recently I was reading a tutorial, in that I came across a statement that says.. "The Java language specification guarantees that reading or writing a variable is an atomic operation(unless the ...
0
votes
1answer
35 views

Manually trigger a @Scheduled method

I need advice on the following: I have a @Scheduled service method which has a fixedDelay of a couple of seconds in which it does scanning of a work queue and processing of apropriate work if it ...
1
vote
0answers
34 views

How to pass io_service object to a new thread using boost::bind?

I have a class called overlay_server which has a public method void member_list_server(boost::asio::io_service &io_service){ Now I want to run this in a new thread. So I create a new thread, ...
1
vote
1answer
40 views

How is consistency maintained for multiple copies of variables that is declared as a ThreadLocal?

As far as I understand ThreadLocal variables maintain a separate copy of the variable for each thread. This variable whose multiple copies are maintained is essentially a shared variable. So what does ...

1 2 3 4 5 752