Tagged Questions
0
votes
0answers
52 views
System.Threading ThreadPool and ThreadStaticAttribute
I use asynchronous sockets. If i understand the functionning, there isn't a thread for each BeginReceive because aynchronous event use ThreadPool (I don't understand the difference between thread and ...
2
votes
0answers
51 views
Blocked Worker Threads in WCF
In Juval Lowy's text "Programming WCF Services", he writes:
...when the client invokes a method of the form Begin() with AsyncPattern set to true, this tells WCF not to try to directly invoke a ...
0
votes
0answers
100 views
Kill Asynchronous thread
I'm trying to read the HttpResponse.GetResponseStream() Asynchronously
Stream source=myHttpResponse.GetResponseStream();
IAsyncResult asyncResult = source.BeginRead(buffer, 0, new[] { ...
0
votes
0answers
72 views
ASP.Net ThreadPool Inconsistent Behaviour
We use ThreadPool in our asp.net c# application for asynchronous call. The scenario is the user provides information to create an Entity and we gather the information and place it in an XML file and ...
2
votes
1answer
58 views
Async programming against non-async services
This past year we've been working on a new web app that calls into our company's existing service layer.
We made the decision to wrap up all of our service oriented calls into our own service layer ...
9
votes
1answer
695 views
Will async(launch::async) in C++11 make thread pools obsolete for avoiding expensive thread creation?
It is loosely related to this question: Are std::thread pooled in C++11?. Though the question differs, the intention is the same:
Question 1: Does it still makes sense to use your own (or 3rd-party ...
0
votes
1answer
107 views
NLog FileTarget wrapped with BufferingTargetWrapper fails to write log if there is a delay
I may have stumbled across an issue with NLog, but thought I would check here first for an answer:
To recreate the issue I cloned the NLog source so I could add a delay to cause the problem. Once ...
0
votes
1answer
86 views
Why are Tomcat's threads more costly than background threads?
I am in reference to the following blog entry: blog entry about Spring MVC 3.2 asynchronous support.
I understand Tomcat uses a thread pool in order to serve http/web requests. Furthermore, the above ...
4
votes
4answers
227 views
N number of threads asynchronously getting/executing tasks
I have an unlimited number of tasks in a db queue somewhere. What is the best way to have a program working on n tasks simultaneously on n different threads, starting new tasks as old ones get done? ...
0
votes
2answers
146 views
Building an asynchronous queue in Ruby
I need to process jobs off of a queue within a process, with IO performed asynchronously. That's pretty straightforward. The gotcha is that those jobs can add additional items to the queue.
I think ...
0
votes
1answer
64 views
At which time and in which context should I call ThreadPool.SetMinThreads
I have an ASP .NET MVC 2 - application, which calls functions of a C#-DLL.
The DLL itself is multithreaded. In the worst case it uses up to 200 threads, which do not run very long.
I use ...
4
votes
1answer
249 views
Why won't my .net app make more than 10 concurrent WebClient requests?
I'm trying to understand the intricacies of async/await in C# and I/O completion ports in Windows, writing code to verify my assumptions along the way.
From what I understand, calling ...
5
votes
2answers
371 views
Performing async operations that are guaranteed to execute within an IIS web site, even if an app pool is recycled
Certain actions that my web site's users carry out result in the sending of emails. The code that sends emails can block for a while, so I want to do this off their HTTP request handler's thread.
...
3
votes
2answers
405 views
std::async not starting new threads with std::launch::async policy
If I launch std::async with std::launch::async policy shouldn't it start every async task in a new thread? At the moment it looks that new async tasks move to a thread which just completed it's work. ...
0
votes
6answers
456 views
How to implement an IIS-like threadpool on a worker-server
EDIT I realised my question was not stated clearly enough and have edited it heavily.
This is a bit of an open ended question so apologies in advance.
In a nutshell, I want to implement IIS-style ...
0
votes
2answers
383 views
Netty Thread Execution - MemoryAwareThreadPoolExecutor
In the documentation of memoryawarethreadpoolexecutor
http://docs.jboss.org/netty/3.2/api/org/jboss/netty/handler/execution/MemoryAwareThreadPoolExecutor.html
Under Event execution order he ...
0
votes
1answer
62 views
Does the StartNew hold a thread for the duration of a call?
I was under the assumption that StartNew only used a thread from the ThreadPool while work was actually being done and would release it when it was waiting. For example:
Task.Factory.Startnew() {
...
1
vote
1answer
223 views
Cost of RunSynchronously
What are the reasons why the two timings below differs so dramatically ?
let time acquire =
let sw = System.Diagnostics.Stopwatch.StartNew()
sw.Start()
let tsks = [1 .. ...
1
vote
1answer
130 views
Experience with using Java EE Restlet's TaskService in an application server?
Has anyone used Restlet's TaskService in a Java EE app (deployed in Tomcat, GlassFish, etc)?
Is using it going against Java EE's specifications? How does Restlet deal with it when the ...
0
votes
1answer
139 views
F# - Need help converting this to use a threadpool
I am new to F# and I have frankensteined the code below from various examples I found online in an attempt to get a better understanding of how I can use it. Currently the code below reads in a list ...
1
vote
1answer
808 views
C#: BackgroundWorker Thread Priority
I'm using a BackgroundWorker in C# and I need to change the thread's priority to RealTime and characteristics to "Pro Audio" using AvSetMmThreadCharacteristics.
Since the BackgroundWorker recycles ...
1
vote
2answers
257 views
Is there a way to log usage of IIS thread-pool threads?
I want to see when exactly a thread from the pool is brought into play and when it is freed.
What I want is to explore the behaviour of a third party library in order to decide whether I should ...
3
votes
2answers
430 views
Scalability through thread economy: async operations vs. multithreaded producer/consumer queues on the thread pool?
Async programming is a way to achieve scalability in web servers through thread economy, so that very few non-blocking threads can handle many simulataneous requests. Node.js for instance, achieves ...
3
votes
3answers
466 views
How do I pause execution of a thread in a thread pool for a certain amount of time without blocking the thread entirely?
What I have is something similar to this:
//method being called by thread pool thread
public string someFunction(){
string someString = "string";
//Stuff happens
//Need to wait for 5 ...
1
vote
1answer
362 views
Fire an event on the original thread inside of an AsyncCallback (Console App)
I am using Func<> or Action<>.BeginInvoke to run methods asynchronously using the ThreadPool.
Is it possible to have the AsyncCallback invoke a function (or an event, technically) on the ...
1
vote
1answer
104 views
Guarding against stack overflows in APM
The Good Book says, that when implementing the asynchronous programming model, there is always a possibility of the callback to be called synchronously many times in a row causing stack overflow. The ...
2
votes
1answer
814 views
using TBB for non-parallel tasks
I want to get a thread-pool behavior using TBB. But whenever I read documents about TBB they always talk about parallel-for, parallel-dowhile etc. In contrast what I need is a main thread to assign ...
6
votes
1answer
462 views
When do I use System.Threading.ThreadPool and when do I use one of the many custom thread pools?
I'm working on creating an asynch handler for asp.net that will execute a slow stored procedure. I think I understand that to gain additional throughput on a mix load of slow and fast pages, that the ...
3
votes
2answers
612 views
How to manage Thread Local Storage (TLS) when using TPL?
I want to store logging context information in TLS so that I can set a value at the entry point, and have that value available in all resulting stacks. This work well, but I also using TPL and the ...
1
vote
3answers
1k views
Understanding ASP.NET asynchronous processing
Every article on async programming in ASP.NET i've read so far states that while we make a request to a database (or other IO) the request thread is returned to ThreadPool ...
3
votes
3answers
439 views
Asynchronous socket reading: the initiating thread must not be exited - what to do?
I have a NetworkStream which I read asynchronously (using async/await)
await Task<int>.Factory.FromAsync((cb, state) => stream.BeginRead(buffer, offset, readLen - offset), stream.EndRead, ...
1
vote
2answers
1k views
WPF, MVVM, and Asynchronous work
I know this question has been asked here before, but I've read through several answers that haven't helped me.
I have a ComboBox that needs to get some information related to a selection from a ...
1
vote
1answer
148 views
ASP.Net AJAX and ThreadPool
Do ASP.Net based AJAX requests use the same ThreadPool that ASP.Net requests use?
ASP.Net asynchronous programming uses a different thread, returning the thread used for processing ASP.Net requests ...
0
votes
0answers
418 views
Asynchronous Web service impementation with ASMX
I am developing instant messaging application and I use web service(ASMX) for server push mechanism. Unfortunately the user capacity is limited with the number of worker threads.
Therefore, I want to ...
3
votes
1answer
191 views
c#: is there any reason to favour asynchronous socket call to synchronous calls in my own thread pool?
Is there any performance advantage in calling BeginGetResponse vs.
calling GetResponse in my own thread pool? The advantage of my own pool
is that I can control the queue of requests.
Thanks!
0
votes
2answers
149 views
ThreadPool Asynchronised Threads in Same Method
I have a question regarding ThreadPool usage at a point.
After I run simple below code. I get the result:
ID : 6 --> A
ID : 13 --> A
ID : 6 --> 2A
ID : 12 --> A
ID : 13 --> 2A
ID : 15 --> A
ID : 6 ...
0
votes
3answers
685 views
Stress testin with Asynchronously Calling 100 thread
I just want to Call 100 thread asynchronously with C#(you can think each thread one user) and I want to get serialization time avarage of my code.Should I use Thread Pool for this?
Thx
3
votes
2answers
171 views
Where can i find the ThreadPool.SwitchTo method?
I am studying the new Async CTP and going through some sample code,
I came across this piece of code:
public async void button1_Click(object sender, EventArgs e)
{
string text = txtInput.Text;
...
5
votes
1answer
814 views
Unexpected behaviour for ThreadPool.QueueUserWorkItem
Please check the code sample below:
public class Sample
{
public int counter { get; set; }
public string ID;
public void RunCount()
{
for (int i = 0; i < counter; i++)
...
2
votes
1answer
453 views
Creating a non blocking async gate in C#
I need to create a gate to a resource in an async programming model so that one and only one thread can have access to a resource at any given time. Given the async programming model I would like the ...
1
vote
1answer
429 views
C# Asynchronous IO: Is there a way of ensuring ordering of tasks?
I would like to use asynchronous io for socket communication with a distributed hash server. Environment is C# 3.5, but could use 4.0 if necessary.
Suppose I issue the following asynchronous commands ...
0
votes
1answer
213 views
Pseudo real time threading
So I have built a small application that has a physics engine and a display. The display is attached to a controller which handles the physics engine(well, actually a view model that handles the ...
2
votes
1answer
591 views
Don't understand some behaviour of @async
I'm having some difficulty understanding a certain aspect of the @async annotation, and possibly the workings of threads and threadpooling as a whole. When I set this in my spring configuration file:
...
1
vote
3answers
238 views
Does an asynchronous call require an extra thread in the current process or use another thread in a thread pool?
I'm referring to this answer where it says it's not required, there are few specific assumptions though. That question is general.
I'm using C#
Asynchronous process is doing nothing but just calling ...
0
votes
1answer
107 views
Executing asynchronous operations
I have read about executing asynchronous operations and i found that it can be done at the SQL command executions side(that is handled during executing SQL command by adding wait handle that waits for ...
1
vote
4answers
354 views
Am I deadlocking? Why?
I have a Silverlight 3 application which needs to call WCF service. The WCF service in turn calls an ASMX web service. When the WCF service call completes, the silverlight UI needs to be updated.
WCF ...
0
votes
2answers
547 views
Launch process from Threadpool worker thread (and wait if needed)
I have an application that processes file transfers. In some instances, I need to launch some pre/post processing executables that do stuff with the files.
So the order of events (in brief) would be ...
2
votes
1answer
288 views
how can I make asynchronous callbacks be processed in a different threadpool?
When doing a begin... async call, the delegate I pass is handled (according to the documentation) in the default threadpool.
for instance: System.IO.Stream.BeginRead(
byte[] buffer, int offset, ...
0
votes
1answer
172 views
Threading to Parallelize Synchronous IO in .Net
Currently I'm in the process of designing the messaging system for my application (which uses AMQP on the backend via RabbitMQ). There are going to be multiple instances where a method can get data ...
4
votes
2answers
2k views
Detecting that a ThreadPool WorkItem has completed/waiting for completion
For whatever reason, ThreadPool's QueueWorkItem doesn't return an IAsyncResult or some other handle to the work item, which would allow to wait until it's completed. There are RegisterWait... methods, ...
