0
votes
1answer
18 views

Replacing Thread.Suspend and Thread.Resume in a windows service

We have a service that does the following basic workflow: 1) Starts, reads config settings and performs some calculations in a large loop. 2) Each iteration of the loop, it needs to be able to check ...
0
votes
2answers
48 views

Putting a thread to sleep for decimal value

This question is about System.Threading.Thread.Sleep(int). I know there is no method for a decimal value, but I really need to work with decimals. Here is the situation I have a device which takes ...
0
votes
0answers
21 views

I can't implements DoDragDrop Operation on second dialog

Well I struggled this problem a lot. I tried to do a simple drag and drop operation, so I did it in the main form(the one that operate from the Main thread) and it was as easy as it sounds. the code ...
3
votes
3answers
105 views

high frequency timing .NET [duplicate]

I'm looking to create a high frequency callback thread. Essentially I need a function to execute at a regular high frequency (up to 100Hz) interval. I realize that windows has a normal thread ...
-1
votes
1answer
25 views

Multithread Windows Service [closed]

How and where do I multithread my code. I currently have a Windows service that collects events from the Windows System log. The service forwards collected events to a remote service. My code is in ...
1
vote
1answer
133 views

What Should I be using here? Threading? Async?

I am not sure what to use in this scenario. I have an asp.net web api method that basically does this Finds points of interests from foursquare near user. Uses the foursquare locations to do ...
2
votes
2answers
108 views

Multithreading - don't understand the situation

var tokenSource2 = new CancellationTokenSource(); CancellationToken ct = tokenSource2.Token; var task = Task.Factory.StartNew(() => { ...
0
votes
1answer
30 views

How does WCF instancing affect the context in which methods are called?

WPF Instancing: when set to per-call, does a new "instance" get created under the same process as the service. Meaning that if the call runs out of memory it will crash the service as well?
0
votes
1answer
37 views

Manage tasks progressions in one user interface

I have an application in witch the user can start tasks, heavy tasks. And I want to manage the progression of these tasks in one user interface Grid (each row is a task, with a progression bar) the ...
0
votes
0answers
59 views

CLR multithreading, deadlock - livelock [closed]

I am trying to understand concept of deadlocks and livelocks in multithreading. I think I grasp the abstract concepts. I am wondering if livelocks are possible to encounter in CLR development. When do ...
-1
votes
1answer
56 views

waking up a thread from sleep in response to an event c#

Lets suppose i have 3 threads A, B and C A starts B whereas C is an independent thread with no relation to either A or B. So now A calls B does some work and sleeps waiting for a signal from B or C ...
2
votes
2answers
56 views

How to unit test a thread safe queue

I need a simple data structure with these requirements: it should behave like a queue, all the enqueue operations should be atomic. I have very limited experience with multithreading, but this is ...
1
vote
2answers
88 views

What is the difference between making an Async web service call and making a Synchronous web service call in another thread?

And/or, when to use either one? Is it a matter of preference or is there a technical difference? Bit of background on why I am asking: I have an app running a .NET 2.0 CF app and the user is making ...
-1
votes
2answers
48 views

VB.NET - Timer not working properly with thread

I'm developing a small app that sends data to a microcontroller. Anyway, a part of it contains downloading data from a web server once in a second and forward that data to the microcontroller if the ...
0
votes
1answer
37 views

BackgroundWorker updates UI on RunWorkerCompleted but System hangs due to heavy data load

I have created a backgroundWorker and i am calling RunWorkerAsync after InitializeComponent() However after googling and through Stack Overflow, I came to know that I cannot update the UI through ...
2
votes
2answers
29 views

What's the difference between using Task and Task<TResult> in C#

Hi I'm making some experiment to understand Tasks. Here what I stumbled upon: static void Main(string[] args) { Console.WriteLine(String.Format("Master in the thread {0}", ...
0
votes
1answer
30 views

How to detect if there is running Javascript in an VB.NET WebBrowser-object

The situation: Using VB.NET Framework 3.5 and Visual Studio 2005 i crated a project which uses the WebBrowser object in a working thrat. Breaking it down to the very basics, it looks like: Dim ...
0
votes
1answer
52 views

Stopwatch elapsed time thread safety

Ok so I have a fairly simple question which I could not find a concise answer for. I am wondering if i need to worry about calling a lock() statement when reading the elapsed property of a Stopwatch ...
0
votes
1answer
49 views
+50

Custom Command WIndows Services on HIGH Priority

I have an Work Tracker WPF application which deployed in Windows Server 2008 and this Tracker application is communicating with (Tracker)windows service VIA WCF Service. User can create any work ...
0
votes
1answer
77 views

Synchronization of remote files download

Preamble: it's a self-assigned and pure syntetic task to learn (and remember what I already knew) C# threads and synchronization and data structures. The story: Let's say I have a dictionary ...
0
votes
2answers
26 views

lock() on the same object I'm trying to exclusively access or use separate locking object?

private class MyClass { private static MyObject myObject = new MyObject(); private void ModifyObject() { lock(myObject) { myObject.UnsafeMethod(); } ...
1
vote
1answer
32 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 ...
0
votes
1answer
51 views

From Qt how to send message to a native application

I found a c++ application to create a splash screen. That creates a named event so from another application this application can be closed. I have an example how to close it from a .net application: ...
3
votes
1answer
52 views

Chunk partitioning IEnumerable in Parallel.Foreach

Does anyone know of a way to get the Parallel.Foreach loop to use chunk partitioning versus, what i believe is range partitioning by default. It seems simple when working with arrays because you can ...
0
votes
1answer
112 views

Why C# threads goes idle during the execution?

I have a scheduler which runs as background thread on application start of an ASP.NET site. User can initiate various tasks (alert emails/file generation etc) which is inserted in a db table. The ...
0
votes
1answer
34 views

Cancel running task started with ThreadPool.QueueUserWorkItem

We have a process that starts long-running tasks via the ThreadPool.QueueUserWorkItem command. Each task inside, loads a new AppDomain via AppDomain.CreateDomain call, processes a bunch of stuff and ...
3
votes
2answers
94 views

Sometimes thread does not start [duplicate]

I faced with some problem I cannot understand why it is happening. Here is simple example: class ConsoleApp { static void Main(string[] args) { Thread workThread = new Thread(ThreadProc); ...
0
votes
2answers
35 views

Trying to modify GUI by another task

I've been trying to modify some GUI elements before/after a TCP connection that i'm trying to execute synchronously and assynchronously. public async void ConnectAsync(String h, String p, String n) { ...
3
votes
1answer
67 views

Cross Process Event - Release all waiters reliably

I have created a cross process event via ManualResetEvent. When this event does occur potentially n threads in n different processes should be unblocked and start running to fetch the new data. The ...
1
vote
1answer
55 views

Thoughts on Entity Framework 5 and Multi-Threading

I am writing a WinForms application using Visual Studio 2012 in C# (.NET 4.5) with Entity Framework 5.0 and SQL Server 2008. Currently, I am using one database context for each form. Each form ...
0
votes
1answer
54 views

Custom events in C# specifically is the sender object thread safe

Ok so I am working on implementing a set of custom events. They will primarially be used withing a multi-threaded environment to communicate major accomplishments throughout the threads. Now I have ...
1
vote
1answer
65 views

Blocking the UI thread while waiting for network activity

I am now maintaining a piece of software written in VB.net (.net 3.5) that communicates over the network with another software running elsewhere which I have no control over. I am not very familiar ...
7
votes
1answer
172 views

Interesting Lucene.net Exception

According to this or this, I used the same indexsearcher by multiple thread. But when I switched from FsDirectory to MMapDirectory, I got interesting exceptions. This work fine: static void ...
3
votes
2answers
80 views

The thread has exited with code 0 in Windows Forms

I have problem with exiting threads in my Windows Forms. I have classic Windows Forms, which is running. I need to do something every period of time, so I added: TimerCallback timerDelegate = new ...
2
votes
6answers
104 views

How to execute a piece of code exactly once with multithreading in mind?

I have a function which does "migration" from an old format to a new format. I need this to occur in the constructor of my object, but not the static constructor because an argument is needed. How can ...
1
vote
2answers
236 views

How can I get a C# timer to execute on the same thread that created it?

I want to enable IMessageFilter on an Excel Addin I have to write to excel. I have taken example from here which says: Message filters are per-thread, so we register this thread as a message ...
20
votes
5answers
8k views

Multithreaded service, BackgroundWorker vs ThreadPool?

I have a .NET 3.5 Windows Service. I'm testing with a small application that just sleeps threads after starting them, for random timespans of 300 to 6500ms. I have various questions about this issue. ...
3
votes
3answers
4k views

How to Invoke the progress bar in Status strip?

I am using the following code to invoke the controls that are on the main UI thread in my application. The progress bar that I have in my Status Strip does not have a InvokeRequired, I need to somehow ...
1
vote
5answers
6k views

C#.net - How to alert program that the thread is finished (event driven)?

this is a snippet from my class: public bool start() { Thread startThread = new Thread(this.ThreadDealer); startThread.Start(); return _start; } In ThreadDealer() I'm setting the boolean ...
3
votes
4answers
3k views

Start and stop(forced) a threaded job

I want to know a proper way to start and stop a threaded job forced and unforced. Is this the proper way to stop a Thread? public class ProcessDataJob : IJob { private ...
3
votes
2answers
642 views

Simple threading question, locking access to shared resource or entire function?

This is a paraphrasing of a question I had before. It's a simple threading question but I can't seem to understand it. If i have shared code: private static object objSync = new object(); private ...
32
votes
7answers
14k views

How do I abort/cancel TPL Tasks?

In a thread, I create some System.Threading.Task and start each task. When I do a .Abort() to kill the thread, the tasks are not aborted. How can I transmit the .Abort() to my tasks ?
14
votes
8answers
3k views

Question about terminating a thread cleanly in .NET

I understand Thread.Abort() is evil from the multitude of articles I've read on the topic, so I'm currently in the process of ripping out to of my abort's in order to replace it for a cleaner way; and ...
8
votes
2answers
7k views

How to close all running threads?

When I use foreach (Form form in Application.OpenForms) { form.Close(); } Application.Exit(); it does not exit the Application. How can I exit the application and make sure ...
3
votes
6answers
3k views

How does static code run with multiple threads?

I was reading http://stackoverflow.com/questions/1511798/threading-from-within-a-class-with-static-and-non-static-methods and I am in a similar situation. I have a static method that pulls data from ...
19
votes
8answers
8k views

Asynchronous Delegates Vs Thread/ThreadPool?

I need to execute 3 parallel tasks and after completion of each task they should call the same function which prints out the results. I don't understand in .net why we have Asychronous calling ...
67
votes
9answers
59k views

Getting the thread ID from a thread

In C# when debugging threads for example, you can see each thread's ID. I couldn't find a way to get that same thread, programmatically. I could not even get the ID of the current thread (in the ...
83
votes
4answers
30k views

How to find the Number of CPU Cores via .NET/C#?

Is there a way via .NET/C# to find out the number of CPU cores? PS This is a straight code question, not a "Should I use multi-threading?" question! :-)
63
votes
9answers
32k views

BackgroundWorker vs background Thread

I have a stylistic question about the choice of background thread implementation I should use on a windows form app. Currently I have a BackgroundWorker on a form that has an infinite (while(true)) ...
142
votes
6answers
59k views

What's the difference between Invoke() and BeginInvoke()

Just wondering what the difference between BeginInvoke() and Invoke() are? Mainly what each one would be used for. EDIT: What is the difference between creating a threading object and calling ...

1 2 3 4 5 64