Tagged Questions
0
votes
2answers
43 views
Using Tasks as a way to separate computation of results from committing results
An API pattern we are considering for separating the work of calculating some results from the committing of those results is:
interface IResults { }
class Results : IResults { }
...
2
votes
3answers
53 views
Regarding asynchronous Task, why is a Wait() required to catch OperationCanceledException?
I'm following the example code here to learn about asynchronous tasks. I've modified the code to write some output of the task's work vs. the main work. The output will look like this:
I noticed ...
1
vote
2answers
62 views
What is the best way to load multiple remote RSS feeds?
I'm working on a project where i need to load multiple (100+) remote RSS feeds, parse them and query for some keywords.
Obviously this process is time consuming and i'm looking for the best way to ...
1
vote
1answer
135 views
Exception handling in fire and forget for C# 5 (in .net 4.5)
Consider the following "fire-and-forget" use case:
A caller requests some data from my method. My method checks the cache to see if the data is already there. If it's not, it fetches it from the ...
0
votes
1answer
66 views
Simultaneous asynchronous API call
I have a Windows application which must make an API call exactly 20 times every second.
The requirement is that the reads must be done very CLOSE TO SIMULTANEOUSLY (within milliseconds).
The ...
3
votes
1answer
111 views
“await/async”: Why the 2 pieces of code doesn't run the same?
It's a simple WinForm application to experiment with the await/async keywords. Below is the event handler for a button.
I quickly click the button twice, the interval is smaller than 3000ms so the ...
0
votes
2answers
116 views
Asynchronous MVC Controllers
I'm learning about the AsyncController in ASP.NET MVC and using it with the TPL, but I'm struggling to see its need, I can understand when you would want to run an Action asynchronously to do ...
0
votes
2answers
163 views
Calling an external process in C#/WinForms makes UI unresponsive. Why?
I have a Winforms app that lives in the taskbar area. A window opens up for logging output.
Now, in my component (still on UI Thread here) I need to call an external process that runs 5-15min and ...
0
votes
2answers
55 views
Timed Method Calls - How do I move on when time expires without waiting for operation to finish?
I have an interesting scenario that I ran into, and I am having trouble determining what the best solution is.
Say I have the following foreach-loop
Request[] requestArray = //Get Array of Request ...
3
votes
1answer
97 views
Will Task.WhenAny unregister continuations on unfinished Tasks?
Consider a class which has some kind of lifetime. During this lifetime, an event may occur any number of times and the event is signaled through completion of a task (which is renewed after an event). ...
-2
votes
1answer
78 views
Exception in task not breaking immediately
Some pseudo code to illustrate my problem:
public async Task DoSomethingAsync()
{
try
{
var task1 = DoThisAsync(); // throws exception
var task2 = DoThatAsync();
await ...
-2
votes
3answers
79 views
Async exception not being caught or being swallowed
I created a somewhat convoluted async method that just runs other async methods. You can disregard most of it as only the line var mSpekTask... is of interest, also, I don't care about the logic, I ...
1
vote
1answer
489 views
ASP.NET MVC4 Async controller - Why to use?
I am trying to understand why and when should I use an async controller action.
Eventually, when I'll uses "await" in it, it will wait for the operation to complete in order to return the View.
For ...
1
vote
3answers
116 views
why do continuations execute in an unpredictable order?
If I chain continuations together they appear to be executing in an order I wasn't expecting.
For example:
for (int i = 1; i < 6; i++)
{
HttpRequestMessage request = new ...
0
votes
0answers
39 views
Background Task fro writing Logs [closed]
Im really new in TPL programming in C#. What I want is to create a background task to save my logs to Amazon S3 through a log4net Appender, and I really want to know if I am doing righ.
Here is a ...
1
vote
1answer
189 views
How to make async functions (like OpenStreamForWriteAsync) synchronous?
I am working on an windows phone 8 app. I have to save video into camera roll folder.
To get a file stream for camera roll folder, I am using following function:
[CLSCompliantAttribute(false)]
...
1
vote
1answer
134 views
Asynchronously query multiple databases in entity framework 5
I need to use entity framework to query many databases at once, but I want all the queries to happen at the same time, and for me to be notified when it has all completed.
I have been using the ...
1
vote
1answer
136 views
WPF MultiThread
I need to load a large file and present the data in a datagrid, but some how i can not load the file asynchronously.
the Button Code:
private async void MILoadLogFile_Click(object sender, ...
1
vote
0answers
101 views
Process a list of webrequest items in parallel as fast as possible
I have a batch of urls that I want to fetch. The list contains urls (more then 50.000) with different domainnames but all domains use the same load balanced server ip.
For each url I want to log its ...
3
votes
3answers
266 views
Why does this async action hang?
I have a multi-tier .Net 4.5 application calling a method using C#'s new async and await keywords that just hangs and I can't see why.
At the bottom I have an async method that extents our database ...
4
votes
1answer
96 views
async await method comparison
I'm getting started with the TPL, and have got a question with regards to the significance of calling await inside the called method marked as async, versus just awaiting the calling function that ...
1
vote
2answers
92 views
Observed Task Exception calling TaskScheduler.UnobservedTaskException
My App is .NET 4.5 and I have a event handler that logs all error on unobserved task exceptions.
TaskScheduler.UnobservedTaskException += (sender, e) => e.Exception.Handle(ex =>
{
...
3
votes
1answer
131 views
Task continuations always run even when specifying TaskContinuationOptions
I want to run some code when an async task completes successfully.
From reading documentation and examples on the web, I thought I could use Task.ContinueWith and specify ...
2
votes
1answer
89 views
Implement asynchronous interface synchronously?
I have to implement a C# interface method like:
Task<Foo> ExecuteAsync();
But this particular implementation is actually synchronous. How can I do that?
0
votes
1answer
165 views
Server implementation with asynchronous processing [closed]
Here is the scenario:
There are clients sending requests to a server (it will be sockets or wcf server, that is not important).
Server will keep an open duplex channel and will use it to send an ...
2
votes
2answers
207 views
Recommended pattern for downloading multiple files in Monotouch (async/multithreaded)
I have a MT app that downloads content form the internet (ex - lots of images - 10K to 5MB). One download session can represent gigabytes of data. I have wrapped the download in a Parallel.ForEach ...
0
votes
2answers
53 views
Ordering of tasks in TPL
If I have the following code
using System;
using System.Threading;
using System.Threading.Tasks;
namespace ConsoleApplication3
{
class Program
{
static Task<int> ...
5
votes
1answer
141 views
An asynchronous counter which can be awaited on
I have a connection class which has several async methods such as SendText, SendImage etc.
The connection class has a Disconnect method, and when it is called I have to be careful not to start ...
3
votes
1answer
135 views
Is Task.Delay non blocking?
Task.Delay uses System.Threading.Timer internally. Main question is System.Threading.Timer non-blocking for my application? If I make:
await Task.Delay(15)
Does code bellow utilize threads for ...
2
votes
1answer
127 views
How to get HttpClient response time when running in parallel
In my ASP.NET MVC4 application I have a controller action in which I go out to several external websites and collect information which I show on my page in an aggregated way. Obviously, I want to do ...
5
votes
2answers
494 views
C# and Tasks - UI Thread Hang - Pre-Async/Await keywords
I'm trying to understand what the correct code to grab a set of data asynchronously when I do not have access to the client lib I am using to retrieve the data. I specify an endpoint and a date range ...
12
votes
3answers
811 views
Why is ASP.NET HttpContext.Current not set when starting a task with current synchronization context
I was playing around with asynchronous features of .NET a little bit and came up with a situation that I couldn't really explain. When executing the following code inside a synchronous ASP.NET MVC ...
1
vote
2answers
311 views
Fire-forget and One-Way Calls in ASP.NET WebApi
I totally understand that HTTP world is not the best choice for one-way calls and that WebApi is designed best for HTTP verbose communications. No doubt, WCF is the winner here. But, what if you ...
4
votes
3answers
172 views
Is it incorrect to return Task.Factory.StartNew( ()=>{ ; } )?
Here's the code i keep seeing--
public Task PossiblyAsyncOperation(bool condition)
{
//this condition means i need to do something async, for sure
if (condition)
...
2
votes
1answer
235 views
How to loop over async methods without async/await
Without using c# async/await features, what is the best way to loop over async operations without blocking?
For instance, downloading a list of urls' HTML asynchronously within a for loop.
I keep ...
2
votes
2answers
255 views
How to throttle concurrent Async webrequests
I often need to make a large number of webrequests, without overloading the network
I currently do this by running synchronous requests in parallel, utilizing ThreadPool.SetMinThreads and ...
2
votes
2answers
454 views
Writing async monotouch code
So I have a method that must execute three tasks.
The first task must be completed before the other two, which can be executed in parallel.
This is what I have right now (modified for simplicity)
...
0
votes
1answer
121 views
What is the most efficient way to read N entities from an Azure Table structure
Background - will be using .NET 4.0, Azure SDK 1.7, Azure Table Storage
Problem
How to most efficiently (= fastest processing time ) to read N entries, where N is a large # (1000's to millions) of ...
4
votes
1answer
320 views
await async lambda in ActionBlock
I have a class Receiver with an ActionBlock:
public class Receiver<T> : IReceiver<T>
{
private ActionBlock<T> _receiver;
public Task<bool> Send(T item)
{
...
1
vote
1answer
169 views
Passing “state” to Task Parallel Library when wrapping APM style
I have the following extension method that I'd like to pass state to:
// Overload 2
public static Task<TableQuerySegment<T>> ExecuteQuerySegmentedAsync<T> (this CloudTable ...
2
votes
1answer
188 views
Task<WebResponse>.Result is always null
I'm working on some code to do an HttpRequest via Task.Factory.FromAsync (in a WP7 app).
The task's Result property is always null, but I know the request itself is correct, because if I paste it ...
11
votes
3answers
442 views
Using “async” (even if it should complete) as part of a MVC route deadlocks the route; how can this be avoided?
Consider the following (based on the default MVC template), which is a simplified version of some "stuff" that happens in the background - it completes fine, and shows the expected result, 20:
public ...
2
votes
1answer
239 views
Using TPL Tasks with HttpWebRequest
I was hoping to use the System.Threading.Task library for my asynchronous web requests in my WP7 project. However, in WP7 (I believe) you have to use the HttpWebRequest class for http requests ...
0
votes
1answer
154 views
Compiler error when combining Linq + “RangeVariables” + TPL + DynamicTableEntity
I'm looking at the Microsoft-provided sample "Process Tasks as they Finish" and adapting that TPL sample for Azure Storage.
The problem I have is marked below where the variable domainData reports ...
5
votes
2answers
2k views
Async-await Task.Run vs HttpClient.GetAsync
I'm new to c# 5's async feature.
I'm trying to understand the difference between these two implementations:
Implementation 1:
private void Start()
{
foreach(var url in urls)
{
...
1
vote
1answer
257 views
When wrapping traditional asynchronous handlers to TPL Task<T> what happens to the Callback and State?
This MSDN page has the following example: The intent is to wrap an APM style task that can't be represented in the various Func<T1, T2, T3> overloads.
static Task<String> ...
2
votes
2answers
192 views
Using TPL to run Tasks in parallel
I have a simple (just a test) state machine that accepts the following input strings abc and ac. The state machine is set up as follows:
s1 --> 'a' --> s2
s2 --> 'b' --> s3
s3 ...
0
votes
1answer
769 views
WP8 SDK import Service Reference with task-based operations not possible
So far it seems that importing a service reference in VS2012 with "generate task-based operations" is not working. It os greyed out.
A test with a new project for WPF is working fine - I could select ...
0
votes
2answers
642 views
Returning value from async Action invoked on Dispatcher
I'm developing a WPF XBAP application that provides API to user through JavaScript by using BrowserInteropHelper. After rewriting managed part in new async-await fashion there is a need to wait until ...
4
votes
1answer
759 views
async/await with ConfigureAwait's continueOnCapturedContext parameter and SynchronizationContext for asynchronous continuations
I would like put the code first and then explain the situation and ask my question based on that:
public partial class MainWindow : Window {
public MainWindow() {
InitializeComponent();
...

