Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6989209
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:10:54+00:00 2026-05-27T19:10:54+00:00

I have a long running Task that uses callbacks to feed data incrementally (rather

  • 0

I have a long running Task that uses callbacks to feed data incrementally (rather than a single ContinueWith() callback at the end).

I want to be able to pass the Task object back in this callback for task identification purposes (using Task.CurrentId)

However, I cannot work out how to pass the Task object into the task delegate. There appears to be no overload to do this, and I can’t use the closure to do it since the task object is not defined at that point.

eg.

public Task StartDoingSomeStuff(CallbackDelegate callback)
{
    Task task = Task.Factory.StartNew(() =>
    {
         while(whatever)
         {
             var results = DoSomeStuff();
             callback(results, task); //CS0165. How do I get hold of the task?
         }
    });

    return task;
}

gives:

error CS0165: Use of unassigned local variable ‘task’

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T19:10:55+00:00Added an answer on May 27, 2026 at 7:10 pm

    Split declaring the variable and assigning the task to it into two statements. Make sure that you don’t use the variable before the task has been assigned:

    public Task StartDoingSomeStuff(CallbackDelegate callback)
    {
        var gate = new object();
        lock (gate)
        {
            Task task = null;
            task = Task.Factory.StartNew(() =>
            {
                lock (gate)
                {
                    while (whatever)
                    {
                        var results = DoSomeStuff();
                        callback(results, task);
                    }
                }
            });
            return task;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a long running Async Task that sends some data to my server
I have a long running insert transaction that inserts data into several related tables.
i have long running task that gets called using jquery ajax. i am using
I have a long-running process that must run every five minutes, but more than
I have a long running, compute and disk intensive task that needs to run
I have a long running task and a Dialog which informs the User that
We have an asynchronous task that performs a potentially long-running calculation for an object.
I have a long running rake task that is gobbling up all my system
If we have a long running task, we can ensure that the application doesn't
I have a long running timer task. Its a batch process actually that will

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.