No announcements
Found 43231 threads
-
1 Votes
When is async not async
An async process will only run async if all the methods inside the code do not block.Answered | 13 Replies | 1240 Views | Created by Dave Mullard - Monday, August 11, 2014 3:09 AM | Last reply by Eyal Solnik - Tuesday, August 12, 2014 2:30 PM -
0 Votes
AlwaysOn Async to Sync to Async
Yes, it is possible, but you should note there are good differences between both the modes wherein with async there are data loss possibilities and in sycn not.Answered | 1 Replies | 1325 Views | Created by Andrea Caldarone - Thursday, July 3, 2014 10:46 AM | Last reply by Santosh Chandel - Thursday, July 3, 2014 12:53 PM -
3 Votes
Async Framework with Async WCF calls.
This is the pattern that's directly compatible with Async/Await.Answered | 3 Replies | 8783 Views | Created by Russty - Thursday, December 15, 2011 2:17 PM | Last reply by Russty - Friday, December 16, 2011 7:42 AM -
0 Votes
On Async programming
Can I do all my Async tasks using this approach?Answered | 5 Replies | 597 Views | Created by m_shawaf - Monday, September 12, 2016 3:28 PM | Last reply by CoolDadTx - Thursday, September 15, 2016 2:02 PM -
2 Votes
async , await
However we don't mark synchronous methods with any suffix, just async methods and it is always `Async`.Answered | 3 Replies | 916 Views | Created by Markus Freitag - Friday, February 8, 2019 5:04 PM | Last reply by CoolDadTx - Saturday, February 9, 2019 4:03 PM -
0 Votes
async and await
Async tasks can be awaited from other async tasks, waited from synchronous methods and finally as RJP1973 mention, take the Task it self.Answered | 3 Replies | 768 Views | Created by MarcinMR - Monday, March 7, 2016 4:25 PM | Last reply by cgentsis - Monday, March 7, 2016 5:23 PM -
1 Votes
async and yield
The Rx team actually has an async iterator (IAsyncEnumerator<T>) as part of their Ix_Experimental-Async package.Answered | 9 Replies | 11730 Views | Created by eisenpony - Monday, June 13, 2011 2:55 PM | Last reply by Halo_Four - Thursday, October 20, 2011 3:12 PM -
0 Votes
Brief async
I need to revise async theory to understand *exactly* what you said and to engage in any significant discussion regarding async.Answered | 2 Replies | 4704 Views | Created by Gaudos - Monday, July 18, 2011 11:40 AM | Last reply by Gaudos - Monday, July 18, 2011 4:45 PM -
0 Votes
Async TestMethod?
In addition to Steve's reply, you should also check out the samples included with the most recent Async CTP.Answered | 2 Replies | 6516 Views | Created by Dave_123 - Monday, June 20, 2011 2:37 PM | Last reply by Stephen Toub - MSFT - Tuesday, July 5, 2011 5:58 PM -
0 Votes
OnLaunched is it async or not?
The async descriptor must be added if the method contains any async methods that are called with await.Answered | 3 Replies | 3238 Views | Created by Silver Dollar Software - Saturday, February 16, 2013 4:39 PM | Last reply by Silver Dollar Software - Saturday, February 16, 2013 6:11 PM -
0 Votes
Async Foreach?
If your desired goal is to process each of the items sequentially, this would instead be more like: public async static Task ...Answered | 2 Replies | 6457 Views | Created by piopio - Monday, November 8, 2010 11:55 PM | Last reply by Stephen Toub - MSFT - Tuesday, November 9, 2010 9:16 AM -
3 Votes
Pitfalls of Async?
* I did a short channel9 series "Three essential tips for async" ...Answered | 15 Replies | 5489 Views | Created by mchalls - Friday, December 21, 2012 5:40 PM | Last reply by Lucian Wischik, MSFT - Wednesday, May 15, 2013 8:53 PM -
1 Votes
Async and Wait
Yes, async all the way.Answered | 5 Replies | 1380 Views | Created by MrSnert - Tuesday, April 2, 2019 11:38 AM | Last reply by MrSnert - Wednesday, April 10, 2019 10:34 AM -
0 Votes
Async Await
A very good MSDN documentation for you to better understand async and await: Asynchronous Programming with Async and Await (C# and Visual Basic) We are ...Answered | 2 Replies | 992 Views | Created by Joaquinmm - Monday, July 7, 2014 10:09 PM | Last reply by Caillen - Wednesday, July 9, 2014 7:36 AM -
0 Votes
CodeDom.CodeMemberMethod and Async
CodeDom has not been updated to support async/await.Answered | 3 Replies | 6204 Views | Created by Perry Manole - Tuesday, November 27, 2012 3:32 AM | Last reply by Perry Manole - Tuesday, November 27, 2012 10:19 PM -
0 Votes
async Micro
Currently we have no plans for async support in .NET MF, but if you feel strongly about it, you should propose the work item on the issue tracker on the MF commnity ...Answered | 1 Replies | 5034 Views | Created by WilliamStacey - Wednesday, November 3, 2010 4:54 PM | Last reply by Lorenzo Tessiore - Thursday, November 4, 2010 5:09 PM -
0 Votes
Async understanding
Hi All, Here is my code and need to understand what I am missing to implement Async approach(Please see bold letters) ...Answered | 1 Replies | 686 Views | Created by pratikmehta9 - Thursday, August 22, 2013 6:34 PM | Last reply by PaulDAndrea - Thursday, August 22, 2013 10:59 PM -
1 Votes
Async constructors?
Hi Stephen, Foo f=await new Foo(Stream); Is marked as an error by the compiler: "The 'await' operator requires that its operand 'SER.Foo' have a suitable ...Answered | 4 Replies | 6486 Views | Created by SERware - Sunday, July 10, 2011 10:08 AM | Last reply by SERware - Wednesday, July 13, 2011 9:10 AM -
0 Votes
Async with SqlCE
Parallel Async http://msdn.microsoft.com/en-us/library/vstudio/hh191443.aspx and Asynchronous Data ...Answered | 2 Replies | 1721 Views | Created by bab76 - Wednesday, November 7, 2012 12:36 PM | Last reply by bab76 - Wednesday, November 7, 2012 4:04 PM -
0 Votes
Async and SQLCLR?
Keep up the great work guys; I love the Async CTP has made my life a great deal easier.Answered | 3 Replies | 7751 Views | Created by Grahame Horner - Thursday, November 4, 2010 6:51 PM | Last reply by Stephen Toub - MSFT - Friday, November 5, 2010 6:18 PM - Items 1 to 20 of 43231 Next ›
No announcements