No announcements
Found 1309845 threads
-
0 Votes
IO operations in thread pool threads
syncCode())] purely for unloading (ie: to not block a UI thread), but in general, wrapping asynchronous tasks around synchronous operations actually just adds ...Answered | 5 Replies | 2033 Views | Created by Kirk Brackebusch - Friday, March 1, 2013 11:26 PM | Last reply by Reed Copsey, Jr - Monday, March 4, 2013 7:05 PM -
2 Votes
Async Issue(Why blocking the UI thread)??
In the new example, the Task4 method runs on a thread pool thread, so it captures a thread pool context instead of a UI ...Answered | 6 Replies | 31395 Views | Created by James.WC - Thursday, March 8, 2012 10:45 AM | Last reply by Stephen Cleary - Friday, March 23, 2012 1:21 PM -
0 Votes
Tasks single thread processing & thread pooling
f());Answered | 3 Replies | 5909 Views | Created by sergunok - Saturday, October 30, 2010 5:51 AM | Last reply by Boucard Bruno - Saturday, October 30, 2010 7:23 PM -
0 Votes
Starting task from UI thread
F()); GG() and HH() will be executed sequentialy (but probably in different threads)?Answered | 8 Replies | 5807 Views | Created by sergunok - Tuesday, February 8, 2011 5:33 PM | Last reply by Stephen Toub - MSFT - Sunday, February 20, 2011 4:29 PM -
0 Votes
[UI-Thread] MY UI thread is block using cached data
jeffersonlicet, >>But it still blocking my UI thread, what can i do to load data from cache?Answered | 1 Replies | 574 Views | Created by jeffersonlicet - Tuesday, December 15, 2015 7:39 PM | Last reply by Fred Bao - Wednesday, December 16, 2015 3:20 AM -
0 Votes
Why ManualResetEvent is Blocked the UI Thread?
But this WaitOne() call is blocking my UI. so it looks like hanging. any help would be appreciated.Answered | 5 Replies | 5034 Views | Created by vinothmdu2001 - Tuesday, August 23, 2011 1:44 PM | Last reply by Lie You - Thursday, August 25, 2011 7:15 AM -
4 Votes
ManualResetEvent WaitAny blocking UI Thread
Why are you blocking your GUI thread?Answered | 15 Replies | 5768 Views | Created by steve1_rm - Tuesday, May 12, 2009 3:14 AM | Last reply by Stephen Cleary - Wednesday, May 13, 2009 2:33 PM -
3 Votes
when not to use thread pool thread in c# program
Thread Pools are usefull if you have a LOT of threads that are not mutually exclusive.Answered | 9 Replies | 3448 Views | Created by Mou_kolkata - Friday, May 8, 2015 12:54 PM | Last reply by Christopher84 - Monday, May 11, 2015 12:30 PM -
0 Votes
What does InvokeRequired return if UI thread is blocked?
Child thread then blocks.Answered | 12 Replies | 5247 Views | Created by catsaremyfriends - Monday, September 15, 2008 4:22 PM | Last reply by xalnix - Thursday, September 18, 2008 9:04 PM -
2 Votes
Get back to the UI thread
If you want the delegate provided to the ActionBlock to run on the UI thread, you can pass an ExecutionDataflowBlockOptions to the ActionBlock constructor, and set that ...Answered | 3 Replies | 9830 Views | Created by Relam.pago - Sunday, February 5, 2012 8:39 PM | Last reply by Stephen Toub - MSFT - Monday, February 6, 2012 3:53 PM -
0 Votes
New Thread is still blocking UI
Dispather.BeginInvoke() puts the task back on the original caller's thread in the event queue.Answered | 3 Replies | 4341 Views | Created by Neils41462 - Friday, July 17, 2009 12:01 PM | Last reply by xalnix - Friday, July 17, 2009 1:38 PM -
1 Votes
Maximum number of thread in a thread pool per application
You cannot change the internals of the thread pool.Answered | 8 Replies | 6345 Views | Created by aujong - Monday, November 10, 2014 3:06 PM | Last reply by aujong - Monday, November 10, 2014 9:51 PM -
3 Votes
Difference Between Threads and Tasks
However, if a task itself processes another task (e.g. if Task t1 calls t2.Wait() and Task t2 hasn't started running yet such that it can be run as ...Answered | 6 Replies | 18975 Views | Created by Nevin Janzen - Sunday, January 8, 2012 9:47 PM | Last reply by Nevin Janzen - Monday, January 16, 2012 5:45 PM -
0 Votes
[C#] should i use threading/thread pool or async background agent?
I don't think it is necessary for you to use the thread pool.Answered | 1 Replies | 643 Views | Created by kodintent - Wednesday, September 28, 2016 8:02 AM | Last reply by Barry Wang - Tuesday, October 4, 2016 8:23 AM -
1 Votes
[WPSL] Is there a way to increase UI thread priority or decrease working threads priority?
>Is it possible to increase the UI thread priority to make sure that all work on this thread is done in the first place despite how many other threads are ...Answered | 8 Replies | 614 Views | Created by Alex K M - Friday, November 20, 2015 4:26 PM | Last reply by Alex K M - Tuesday, December 1, 2015 4:09 PM -
1 Votes
how to block threads
is blocked until the data is avaliable.Answered | 10 Replies | 1043 Views | Created by chmouel kalifa - Wednesday, September 9, 2015 8:44 PM | Last reply by Harjohn - Tuesday, September 15, 2015 7:40 AM -
0 Votes
SynchronizationContext and the UI Thread
I see, so the order of execution of the continuewith sections of either task on UI thread is set by their respective positions in UI threads work queue.Answered | 4 Replies | 6403 Views | Created by Robc1234 - Wednesday, March 16, 2011 12:40 PM | Last reply by MarkRockmann - Friday, March 18, 2011 2:21 PM -
0 Votes
TPL - why separate thread pool?
The original reason was that the TPL needed different characteristics than the standard thread pool.Answered | 2 Replies | 7413 Views | Created by Joe Albahari - Monday, April 13, 2009 4:15 AM | Last reply by Joe Albahari - Tuesday, April 14, 2009 10:57 AM -
2 Votes
Documentation for Thread Pools
You’re right, the thread pool documentation could be much better.Answered | 5 Replies | 6379 Views | Created by Ashwin Balasubramaniyan - Monday, October 4, 2010 4:10 PM | Last reply by Hari Pulapaka - MSFT - Wednesday, October 13, 2010 4:20 PM -
3 Votes
Interaction between concurrent CRT and the thread pool APIs
One aspect to note is that the blocking operation from the IO will become cooperative under UMS and potentially create new threads if called within a tight parallel ...Answered | 8 Replies | 7955 Views | Created by GT227 - Wednesday, August 18, 2010 2:56 AM | Last reply by Dana Groff - Thursday, September 2, 2010 11:31 PM - Items 1 to 20 of 1309845 Next ›
No announcements