Tagged Questions
0
votes
2answers
75 views
Understanding async/await without threads
According to MSDN, async and await do not create new threads:
The async and await keywords don't cause additional threads to be created.
With this in mind, I'm having difficulty understanding ...
1
vote
4answers
48 views
resolving threading conflicts in C#
lets suppose there is a static variable accessed by 2 threads.
public static int val = 1;
now suppose thread 1 execute's a statement like this
if(val==1)
{
val +=1
}
However after the check ...
1
vote
1answer
64 views
How to use a thread to completion, then reuse the thread?
I'm building a form and I'm trying to use threading in order to get some results from a WMI query to display in a textbox without having the form freeze up on the user. However, when I use the code ...
0
votes
4answers
60 views
Handle Thread in c# for print
I want to do the printing from my dot net project as background work as a thread, for that what I did is, first collect the each output string to a collection of string like this:
...
2
votes
2answers
39 views
Why the EventWaitHandle.WaitAny method have 64 handle limit?
I have an application that need control many slave processes to do the task. And there is a matching thread to do the match job. I use EventWaitHandle to communicate between them, at free time the ...
0
votes
2answers
35 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
53 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
122 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
27 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
149 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
110 views
Multithreading - don't understand the situation
var tokenSource2 = new CancellationTokenSource();
CancellationToken ct = tokenSource2.Token;
var task = Task.Factory.StartNew(() => {
...
0
votes
1answer
31 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
61 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
57 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
57 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
94 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
52 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
37 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
54 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 ...
3
votes
1answer
93 views
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
84 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
27 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
53 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
37 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
69 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
59 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
56 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 ...
1
vote
0answers
40 views
Connect clients in server-client system
I have a multithreaded server-client system where clients chat with the server and receive the sent message back, but only client-to-server way of communication. I want to make it client-to-client. ...
7
votes
1answer
173 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 ...
0
votes
2answers
64 views
Long-Running Asynchronous Operations, Without IO threads
What is the best way to launch a hight-latency asynchronous IO operation (100ms-500ms average), where the IO operation does not have inherent APM or IO thread / completion port support?
I don't want ...
1
vote
1answer
39 views
What is the Difference Between Awaiter (GetAwaiter) and ContinueWith
In .net 4.0, I use Task.ContinueWith regularly. But then I spotted "task.GetAwaiter()" which seems to have the same purpose.
What is the difference?
0
votes
1answer
48 views
How to write current thread task continuation that will execute after standard continuation worked? [closed]
I need to write extension method which will work like Task.ContinueWith() but on main thread and after Task.ContinueWith() ended.
public static Task ContinueWithOnMainThread(this Task task, Action ...
0
votes
2answers
43 views
Order of IsHandleCreated and InvokeRequired
I have the following code, and I've seen it written two different ways. I'm just curious which of the two ways is better practice:
if (this.IsDisposed) return;
if (this.IsHandleCreated)
{
if ...
-1
votes
1answer
57 views
.net multithreading: control a scanner on a separate thread [closed]
I've written a VB.NET application that acquires images from the scanner using Windows Image Acquisiton API. In my code, the function WIAItem.Transfer() is called and returns the image from the ...
1
vote
0answers
61 views
If I name my thread, does the process inherit the name?
I have an application that has the ability to kick off a new thread that opens a new form (MonitorForm). When I create the thread, I give it a name (let's say, "MyAwesomeThread"). When the originating ...
0
votes
0answers
28 views
TPL Update UI Thread
I've been trying different approaches for the last few days on the best way to update the ui thread with work from a different task via events. Most of what I've seen requires Invoke, BeginInvoke or ...
0
votes
2answers
62 views
C# Shutdown A Thread That Uses Application.Run()
I'm trying to use a C# DLL that I have access to the code of, but I can't actually change the code and build a custom version of it. The calling code is a C# WinForms project and the C# DLL also uses ...
1
vote
2answers
49 views
How to dispose a resource shared between UI thread and background thread
Lets start with a UI thread (WPF, WinForms is fine too), and the UI thread creates a background thread to do somework (Threadpool) and when completed the background thread updates the UI (using ...
1
vote
2answers
79 views
.NET - Block main thread until there are any available threads
I have a process where my main thread is reading a file and splitting it into parts. Those parts then require further processing. I would like to utilize any available threads so that the downstream ...
2
votes
1answer
79 views
How to run dependent Tasks parallelly in Multiple threads?
I have a set of huge taks to be performed in c#. Each calcuation will produce a resultant data which i want to write into a file (i am using SQLite). Currently i am doing this in a sequential way like ...

