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 6906683
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:20:28+00:00 2026-05-27T08:20:28+00:00

I cant figure out how to proceed the best way with this problem. Right

  • 0

I cant figure out how to proceed the best way with this problem.

Right now I have a windows service which only task is to gather data from a database with a specific DSN and then send out an email if the data is valid. The service contains a timer which ticks every 5 minuts and performs the tasks above.

Now I need to re-write the windows service to be able to run on more than 1 DSN.
I was thinking of making several threads inside the windows service and then again have a seperat timer inside each thread.
Is this a good idea and how can this be done? I want to avoid having a windows service for each DSN.

Ill try to draw it if I dont make any sense

                             Windows Service

Thread1(DSN1)—————————–Thread2(DSN2)———————-Thread3(DSN3)
Timer(ticks every X minuts)—————–Timer(same)————————-Timer(same)
Logic()———————————————Logic———————————Logic()

Hope my problem makes sense 🙂

  • 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-27T08:20:29+00:00Added an answer on May 27, 2026 at 8:20 am

    As far as I Know each timer represents a thread on its own. Knowing this, I would try to dynamically create timer objects for each given dsn.

    public partial class Service1 : ServiceBase
    {
        public Service1()
        {
            InitializeComponent();
        }
    
        private List<GetDataFromDSN> list = null;
        protected override void OnStart(string[] args)
        {
            list = new List<GetDataFromDSN>();
            // assume args contains your given dsn values
            foreach (string dsn in args)
            {
                GetDataFromDSN newObj = new GetDataFromDSN();
                newObj.DSN = dsn;
                list.Add(newObj);
                newObj.Start();
            }
        }
    }
    
    public class GetDataFromDSN
    {
        public string DSN { get; set; }
        private Timer timer = null;
        private double interval = 1000*60*5; // 5 minutes interval
        public GetDataFromDSN()
        {
            // init your object
            timer = new Timer(interval);
            timer.Elapsed +=new ElapsedEventHandler(timer_Elapsed);
        }
        private void timer_Elapsed(object sender, ElapsedEventArgs e)
        {
            // do what ever you want
        }
        public void Start() // or even make timer public
        {
            timer.Start();
        }
        public void Stop()
        {
            timer.Stop();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have a problem which i cant figure out myself, i have a SQLite
I want to do something but cant figure out how to do this (i
I realize this perhaps a naive question but still I cant figure out how
I am getting segmentation fault in this code but i cant figure out why.
This seems in my head like it should work but I cant figure out
I cant really figure out whats wrong with this. I used to write the
Cant figure out what the problem is! $msgs = mysql_num_rows(mysql_query(SELECT * FROM messages WHERE
I cant figure out how to do relationships. I have a products model and
Been at this for a while and cant figure it out so i thought
I Have a quite simple question that I just cant figure out. The method

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.