Multithreading is how work performed by a computer can be divided into multiple concurrent streams of execution (generally referred to as threads).
0
votes
0answers
8 views
How can I check something every 5 min and break check when needed?
In MainPage.xaml.cs I have created a BackgroundWorker. This is my code:
protected override void OnNavigatedTo(NavigationEventArgs e)
{
base.OnNavigatedTo(e);
...
0
votes
0answers
5 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 ...
-3
votes
0answers
45 views
Do function pointers have access to outer class private variables? [closed]
class foo {
int a = 4;
public void functionInFoo(){
a=5;
}
public foo2 a;
public foo(){
a = new foo2(){
@override
void doSomething(){
functionInFoo();
}
}
}
}
If foo2 ...
0
votes
1answer
33 views
C++ 11 : Start thread with member function and this as parameter
Using this code, I got and error :
Error 1 error C2064: term does not evaluate to a function taking 1 arguments c:\program files (x86)\microsoft visual studio 11.0\vc\include\functional ...
0
votes
2answers
15 views
Is it possible to share a register between threads?
I know that when the OS/Hardware switch between the execution of different threads it manage the store/restore the context of each thread, however I do not know many of the details. My question is: ...
5
votes
8answers
71 views
Creating Object in a thread safety way
Directly from this web site, I came across the following description about creating object thread safety.
Warning: When constructing an object that will be shared between
threads, be very ...
0
votes
2answers
47 views
Multi Threaded Windows Application uses more memory when idle
I've got a technical question around memory usage and multi-threaded applications.
My scenario is that I've built a server application (in C#) that is constantly running and updating DB info ...
2
votes
4answers
49 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();
}
}
...
1
vote
6answers
55 views
Is this a lazy thread safe Generic multiton?
Could somebody check if this version of a Generic Multiton is lazy and thread safe?
I coded it based on Jon Skeet's version of a lazy thread safe Singleton, on O'Reilly's C# Design Patterns, and on ...
0
votes
1answer
11 views
Java thread blocked at com.arjuna.ats.internal.arjuna.objectstore.FileSystemStore.createHierarchy
I run some load test in my Jboss application and when I launched JvisualVM to see what happen, I found a lot of blocked threads ( 150 over 400 threads ).
So I done a Thread dump and all of this ...
21
votes
4answers
315 views
C++11 multithread slow
I'm trying around on the new C++11 threads, but my simple test has abysmal multicore performance. As a simple example, this program adds up some squared random numbers.
#include <iostream>
...
2
votes
3answers
54 views
Java Thread Scheduling
My notes say that there are two main categories of thread scheduling algorithms, preemptive and time sharing. I'd like to clear up exactly how these work in Java.
As I understand (and PLEASE correct ...
1
vote
2answers
20 views
Best way to terminate thread in my usercontrol when containing form is closed?
Dang - 10 YEARS of C# programming and I still just can't deal with the fact that there are no C++ like destructors in this language. 99.9% of the time it is not an issue - but now it's getting me.
I ...
3
votes
1answer
39 views
How should i properly invoke a WebBrowser using multiplethreads?
Problem Scope:
I'm writing an aplication to save the HTML's retrieved from the Bing and Google searches. I know there are classes to execute the Web Requests using stream such as this example, but ...
1
vote
0answers
23 views
ASP.NET WebMethod holding threadpool thread on long running SQL procedure
I have a reporting page which builds a report from a database table. The report is displayed in a tabular format. To handle user interactions I have built a JQuery table plugin which allows a user to ...
0
votes
2answers
30 views
Threads: How to put a check inside Thread Consumer for Data reciving check
I have this producer Consumer sample Program shown below
How can i put a Condition inside my Consumer Thread class so that if i didn't recivied the data from producer for 1 minute , i need to log ...
1
vote
1answer
18 views
JAXB and synchronization
I have a class as such:
import java.util.Vector;
import javax.xml.bind.annotation.*;
@XmlRootElement(name="task-list")
@XmlAccessorType(XmlAccessType.FIELD)
public class TaskList {
...
1
vote
5answers
51 views
Killing Thread without periodically checking alive status
I am runnning ExecutorService to perform a heavy computation, however I don't want to pollute the algorithmic class/method code with runner operations, in this case I'd like to do periodical check if ...
1
vote
1answer
26 views
Android : Create Service as Independent Project
I am working on an Android app that has two main projects:
The main activity
A service
These two projects are independent and I can't link them together.
I've tried Broadcast Receiver, Remote ...
0
votes
1answer
25 views
Java SwingWorker while using SWT
I have a problem as follows:
I've written a simple minimalistic Application that utilizes the SWT for the GUI.
In a specific tab, where it displays a table that get's filled with Informition via a ...
6
votes
3answers
49 views
A use-case for synchronized(new Object())
In a recent answer I suggested that it is possible to achieve the functionality of volatile by synchronizing on the object containing the variable we need to be volatile (asker does not have access to ...
-1
votes
0answers
11 views
Initial screen and menu later
I am using a thread for lauching initial screen and after 3 seconds i want to show a personalizad menu with some buttons created with images.
If I do not associate any events to the buttons (images) ...
1
vote
1answer
19 views
Ruby 192 recursive thread lock error
I am working with ruby 192 p290: under one unit-test script (shown below) throws ThreadError
1) Error:
test_orchpr_pass(TC_MyTest):
ThreadError: deadlock; recursive locking
...
1
vote
3answers
80 views
Memory Leaks in Visual Studio
I have a memory leaks with this simple code using std::thread on Visual Studio Pro 2012:
#include <thread>
void f(){}
int main(){
std::thread t(f);
t.join();
...
5
votes
7answers
92 views
Multi-threading with long linked-list
I have a algorithm question here. There are 10 threads in the system and you are given a link list with 10 K elements in it. How do you do the thread synchronization (addition deletion etc.) so that ...
0
votes
3answers
54 views
What is the maximum number of threads a process can have in windows
In a windows process is there any limit for the threads to be used at a time. If so what is the maximum number of threads that can be used per process?
0
votes
1answer
10 views
2 instance of Log4Net in same process parallel logging issue
I've read this question: log4net-and-logging-from-parallel-instances
I have written a DLL that uses log4net for logging.
I have a process that uses my DLL with 2 instances (same process)
The first ...
-5
votes
0answers
73 views
The loop FOR only loop 140 times on java applet
I have an applet. This applet displays Selectionsort by Image step by step. I use for loop. But it only loops for 140 times and it is bad.
I can't find any problem in my code on method swaplabel().
...
0
votes
0answers
27 views
Sending Data to TCP Client gets Hanged after some interval
I have a program which makes a TCP Connection with multiple clients and stores the socket connection and client id in HashMap and sends the data to client by reading the data from UDP Socket.
please ...
4
votes
5answers
73 views
Thread safety of final field
Let's say I have a JavaBean User that's updated from another thread like this:
public class A {
private final User user;
public A(User user) {
this.user = user;
}
public ...
0
votes
2answers
19 views
JavaFx Working with threads and GUI
I have a problem while working with JavaFx and Threads. Basically I have two options. Working with Tasks or Perform.runLater. As I understand Perform.runLater should be used for simple/short tasks, ...
1
vote
0answers
20 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 ...
2
votes
1answer
38 views
WPF threading error(Invalid Operation Exception was handled)
I am creating WPF Project and I have two screen
1)Loading Screen
2)MainWindow
My code is as follows from Loading screen
private void Window_Loaded(object sender, RoutedEventArgs e)
{
...
0
votes
1answer
13 views
Cross thread violation error inside Timer_Tick event
My WinForm application invokes a thread to run a process, and also starts a WinForms Timer control Tick event at same time to display the progress of the thread process.
public void ...
1
vote
2answers
94 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
strict private
class var
FCounter:integer;
public
class procedure ...
2
votes
1answer
44 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 =>
{
...
0
votes
1answer
23 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
33 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:
...
0
votes
0answers
21 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 ...
0
votes
3answers
31 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 ...
0
votes
0answers
16 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
1answer
17 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 = ...
2
votes
1answer
46 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 ...
1
vote
2answers
74 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 ...
0
votes
4answers
44 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
1answer
62 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
29 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
21 views
Thread.Join never returns in FormClosing event if using Invoke method in worker thread [duplicate]
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 ...
0
votes
0answers
21 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 ...
1
vote
1answer
44 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 ...







