473,769 Members | 3,872 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Timer Array in c#, VS2005

I have created an array of timers (1-n). At first I just created
windows form timers but I read that system timers are better for
background work. The timers will just be monitoring different
directories and updating a database. No interaction with the GUI.

Problem is that the system timers do not have a tag property so I can
tie in an object.

example (old way):

public class TimerInfo
{
public string sPath;
public int iInterval;
}

private ArrayList arrTimers = new ArrayList();

private void CreateTimers(in t NUMBER_TIMERS)
{
TimerInfo Info;
System.Timers.T imer newTimer;

for (int i = 1; i <= NUMBER_TIMERS; i++)
{
Info = new TimerInfo();
Info.sPath = "c:\\";
Info.iInterval = 60000;

newTimer = new System.Timers.T imer();
newTimer.Elapse d += timerWatch_Tick ;
newTimer.Interv al = 20000;
newTimer.Tag = TimerInfo;
newTimer.Enable d = true;

arrTimers.Add(n ewTimer);
}
}

private void timerWatch_Tick (object sender, EventArgs e)
{
string sPath = ((TimerInfo)((T imer)sender).Ta g).sPath;
CheckForFile(sP ath);
}
Do I need to call Dispose if I want to reset the timer array?

foreach (System.Timers. Timer atimer in arrTimers)
{
atimer.Dispose( );
}
arrTimers.Clear ();

Thanks for your help. I am struggling as a newbie through C# even
though it is a really neat language.

~Gina~

Oct 4 '06
12 5534
Hi William:

Can you give me a short example. I am a C# and thread newbie.

~Gina~

William Stacey [C# MVP] wrote:
But you can pass a state object to the constructor that gets passed to the
callback to get the same effect - no?

--
William Stacey [C# MVP]
Oct 6 '06 #11
private void button24_Click( object sender, EventArgs e)
{
Console.WriteLi ne("Running a job every 5 seconds.");
string s = "MyObject";
System.Threadin g.Timer timer = null;
timer = new System.Threadin g.Timer(
delegate(object state)
{
string s1 = (string)state;
timer.Change(50 00, -1);
Console.WriteLi ne("Job ran at: {0} State:{1}",
DateTime.Now, s1);
}, s, 5000, -1);
}

As others have said, you can derive from Timer also to add your state
member(s).

--
William Stacey [C# MVP]

"Gina_Maran o" <gi*******@gmai l.comwrote in message
news:11******** **************@ i3g2000cwc.goog legroups.com...
| Hi William:
|
| Can you give me a short example. I am a C# and thread newbie.
|
| ~Gina~
|
| William Stacey [C# MVP] wrote:
| But you can pass a state object to the constructor that gets passed to
the
| callback to get the same effect - no?
| >
| --
| William Stacey [C# MVP]
|
Oct 7 '06 #12
Thanks a bunch William and everyone for being so helpful.

~Gina~

William Stacey [C# MVP] wrote:
private void button24_Click( object sender, EventArgs e)
{
Console.WriteLi ne("Running a job every 5 seconds.");
string s = "MyObject";
System.Threadin g.Timer timer = null;
timer = new System.Threadin g.Timer(
delegate(object state)
{
string s1 = (string)state;
timer.Change(50 00, -1);
Console.WriteLi ne("Job ran at: {0} State:{1}",
DateTime.Now, s1);
}, s, 5000, -1);
}

As others have said, you can derive from Timer also to add your state
member(s).

--
William Stacey [C# MVP]

"Gina_Maran o" <gi*******@gmai l.comwrote in message
news:11******** **************@ i3g2000cwc.goog legroups.com...
| Hi William:
|
| Can you give me a short example. I am a C# and thread newbie.
|
| ~Gina~
|
| William Stacey [C# MVP] wrote:
| But you can pass a state object to the constructor that gets passed to
the
| callback to get the same effect - no?
| >
| --
| William Stacey [C# MVP]
|
Oct 13 '06 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3300
by: Paul Tomlinson | last post by:
Question about a System.Threading.Timer object and the "state" object you pass to it... Timer stateTimer = new Timer( = new TimerCallback( OnTimer ), o, 1000, 1000); I have an array of timer objects which all fire into my OnTimer( object state ) function very nicely. I pass in an object "o" on creation of this timer which I subsequently get passed to me in my OnTimer function. Now in the OnTimer function I want to modify the object...
1
3957
by: Manuel | last post by:
Used VS2005 to create a windows service and I can't make a timer trigger the tick/elapsed event. On the form viewer I dragged a timer from the components section of the toolbar, enabled it but the tick event does not fire! I tried this other method but the elapsed event does not fire. ---------- Private WithEvents MyTmr As New System.Timers.Timer(1000) Private Sub MyTmr_Elapsed(ByVal sender As Object, ByVal e As
5
2513
by: Lonewolf | last post by:
Hi all, I am not sure if it is even possible to do it from .NET itself. Is there something like a waitable timer which can resume the system from its hibernate or standby (S3: suspend to ram) mode. I'm trying to use C# to create something that can "wake" the system up at a particular time (set by user) if it is in hibernate or standby mode to do certain task and after which to put it back to sleep again. Is it possible? I'm using VS2005....
3
2913
by: Avi G | last post by:
Hi, how can i set a timer in VS2005 form that will click the button that is on the form every X time? THX
0
897
by: John Mason | last post by:
Hello, I have a small client app using a timer control that communicates with a Windows service using .NET remoting. Both apps were authored against the 1.1.4322 framework. The timer controls the periodicity for refreshing the details/progress of the Windows service. This all works perfectly in my test environment running 1.1. The production environment runs off the 2.0 framework. The Windows service (which uses no timers) runs fine,...
4
1509
by: John | last post by:
I want to write a quick app that will remind me not to slouch at the computer with an Outlook "New Mail Desktop Alert" style pop-up every 15 minutes or so. What I'd like advice on is the best method of timing and displaying the pop-ups that would have the lowest performance impact for other running applications? Best regards
5
12247
by: Tony Gravagno | last post by:
I have a class that instantiates two Timer objects that fire at different intervals. My class can be instantiated within a Windows Form or from a Windows Service. Actions performed by one of the event handlers may take longer than the interval for either of the timers, so it's possible for multiple events to fire "simultaneously" and for events to queue up. I'm attempting to get the timers to sync on some reference type object, or use...
19
5210
by: colin | last post by:
Hi, Im trying to time some parts of my code using the Stopwatch class, but it is so slow, I tried the QueryPerformanceFrequency() but this seems to be just as slow, if I just simply call this function in a loop it takes 21 ticks with a reported frequency of 3.5mhz its is about 6us wich is over 12k instructions on my 2ghz cpu. this negates the idea of having a high res timer ...
5
3796
by: =?Utf-8?B?QXlrdXQgRXJnaW4=?= | last post by:
Hi Willy, Thank you very much for your work. C++ code doesnot make any serialization. So at runtime C# code gives an serialization error at "msg_file_s sa = (msg_file_s) bf.Deserialize(ms);" I thought that it is very hard to memory map structure array. I need both read and write memory mapped file at both side of C# and C++.
0
9579
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9422
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10035
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9984
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8863
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7403
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5441
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3949
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2811
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.