Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [long-running-task]

The tag has no usage guidance.

long-running-task
0 votes
0 answers
33 views

The Web API responds to the browser before the await Task.Delay finished executing

I'm working on an OWIN ASP.NET Web API 2 application which uses Autofac. I ran into some issues because some code after await is never executed when the client app (browser) is cancelling the request. ...
user25652029's user avatar
-2 votes
1 answer
25 views

How can I load progressbar from start to finish while I restart SQL Server Service using C#

Sorry, I am a noob for C# programming. I have search for many times to load progressbar while restart the SQL Server Service, but there are a lot of code and it was messing me up. I don't understand ...
Faro's user avatar
  • 3
0 votes
1 answer
27 views

How to use data streamed to stdout after request to Google API using python SDK and flask

I am using Google's vertex python API and am having trouble understanding how to make use of the output for "LRO" their Long Running Operations. The case I'm stuck on is calling aiplatform....
L1ghtsp33D's user avatar
0 votes
1 answer
83 views

A more efficient way of doing grouped pairwise comparisons in a large dataset?

I have data that looks like this: Tab4 <- read.table(text = " nodepair `++` `--` `+-` `-+` `0+` `+0` `0-` `-0` `00` ES 1 A1_A1 0 4 0 0 0 0 0 0 ...
Hard_Course's user avatar
0 votes
1 answer
133 views

LongRunning Task behaviour

I have a class that contains a BlockingCollection<Task> that is used to queue up a number of tasks to run in order (FIFO). The queue itself is started on a separate long running task. public ...
wforl's user avatar
  • 869
0 votes
1 answer
155 views

Azure App Service and long running task for multi tenancy application

I am building the Multi Tenancy Web Application that has long running task. This task will take more CPU/RAM: Read list of employee by Tenant from Azure SQL. Use Parallel.ForEach to perform multi ...
Rango's user avatar
  • 2,066