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

  • SEARCH
  • Home
  • 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 750107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T14:30:47+00:00 2026-05-14T14:30:47+00:00

I have a windows service that has a lot of work to do simultaneously.

  • 0

I have a windows service that has a lot of work to do simultaneously. I’ve looked into threading and found the ThreadPool class. I’m currently stuck, it doesn’t seem to have any effect, it’s like whatever I’m queuing is never run or called. In the service’s OnStart() event I create a thread like this:

Thread mainThread = new Thread(ReceiveMessages);
mainThread.Start();

Inside the method ReceiveMessages() I have a routine that checks a message queue and then iterates through the messages. For each iteration I call the following code to do some work with each message:

ThreadPool.QueueUserWorkItem(new WaitCallback(delegate(object state)
{
    Interpreter.InsertMessage(encoding.GetBytes(MessageBody));
}), null);

I think the syntax is right, it compiles with no issues, but I can’t help but feel that I am missing something. When I run the service, nothing happens. However, if I replace the above code snippet with this:

insertThread = new Thread(delegate() { Interpreter.InsertMessage(encoding.GetBytes(MessageBody)); });
insertThread .Start();

It works 100%. It’s not very efficient though and can cause the service to crash (which is does occasionally, the reason why I’m trying to use TheadPool instead). Can anyone shed some light on the subject?

  • 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-14T14:30:47+00:00Added an answer on May 14, 2026 at 2:30 pm

    It looks like you’re creating a closure over MessageBody in your wait callback. If the caller’s MessageBody property is null by the time the thread pool executes the work item, then that’s what InsertMessage will operate on.

    You need to define an overload of Interpreter.InsertMessage that accepts an object and use that as your WaitCallback:

    public void InsertMessage(object messageBody) {
        this.InsertMessage((byte[])messageBody);
    }
    

    Then pass the message body bytes as the second parameter:

    ThreadPool.QueueUserWorkItem(new WaitCallback(Interpreter.InsertMessage), 
                                 encoding.GetBytes(MessageBody));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a windows service that has it's name set by an app.config. I
I have a windows service that does some intensive work every one minute (actually
I have a Windows service that has a number of threads that all need
We have a windows service that has been happily running in production for over
I have a windows service that has some performance counters in it. I have
I have a windows service that has a custom configuration section. In the configSectionHandler
I have a Windows service that has been scheduled using Quartz.NET . I have
I have a windows service that has tasks and those tasks run a parallel
I have a windows service that has been running. I have created a new
I have a Windows service that writes messages to the Event Log. I also

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.