Can Timers get automatically garbage collected? Can Timers get automatically garbage collected? multithreading multithreading

Can Timers get automatically garbage collected?


This is only a problem with the System.Threading.Timer class if you don't otherwise store a reference to it somewhere. It has several constructor overloads, the ones that take the state object are important. The CLR pays attention to that state object. As long as it is referenced somewhere, the CLR keeps the timer in its timer queue and the timer object won't get garbage collected. Most programmers will not use that state object, the MSDN article certainly doesn't explain its role.

System.Timers.Timer is a wrapper for the System.Threading.Timer class, making it easier to use. In particular, it will use that state object and keep a reference to it as long as the timer is enabled.

Note that in your case, the timer's Enabled property is false when it enters your Elapsed event handler because you have AutoReset = false. So the timer is eligible for collection as soon as it enters your event handler. But you stay out of trouble by referencing the sender argument, required to set Enabled back to true. Which makes the jitter report the reference so you don't have a problem.

Do be careful with the Elapsed event handler. Any exception thrown inside that method will be swallowed without a diagnostic. Which also means that you won't set Enabled back to true. You must use try/catch to do something reasonable. If you are not going to intentionally end your program, at a minimum you'll need to let your main program know that something isn't working anymore. Putting Enabled = true in a finally clause can avoid getting the timer garbage collected, but at the risk of having your program throw exceptions over and over again.


Let's carry out an experiment:

private static void UnderTest() {  // Timer is a local varibale; its callback is local as well  System.Threading.Timer timer = new System.Threading.Timer(    (s) => { MessageBox.Show("Timer!"); },      null,      1000,      1000);}

...

// Let's perform Garbage Colelction manually: // we don't want any surprises // (e.g. system starting collection in the middle of UnderTest() execution)GC.Collect(2, GCCollectionMode.Forced);UnderTest();// To delay garbage collection// Thread.Sleep(1500);// To perform Garbage Collection// GC.Collect(2, GCCollectionMode.Forced);

So far

  • if we keep commented both Thread.Sleep(1500); and GC.Collect(2, GCCollectionMode.Forced); we'll see message boxes appear: the timer is working
  • if we uncomment GC.Collect(2, GCCollectionMode.Forced); we'll see nothing: the timer starts then it is collected
  • if we uncomment both Thread.Sleep(1500); and GC.Collect(2, GCCollectionMode.Forced); we'll see a single message box: the timer starts, goes off a single message box and then the timer is collected

So System.Threading.Timers are collected as any other object instances.


Add this code to a program and run it. You'll see that the timer is NOT collected.

    private void DoStuff()    {        CreateTimer();        Console.WriteLine("Timer started");        int count = 0;        for (int x = 0; x < 1000000; ++x)        {            string s = new string("just trying to exercise the garbage collector".Reverse().ToArray());            count += s.Length;        }        Console.WriteLine(count);        Console.Write("Press Enter when done:");        Console.ReadLine();    }    private void Ticktock(object s, System.Timers.ElapsedEventArgs e)    {        Console.WriteLine("Ticktock");    }    private void CreateTimer()    {        System.Timers.Timer t = new System.Timers.Timer(); // Timer(Ticktock, null, 1000, 1000);        t.Elapsed += Ticktock;        t.Interval = 1000;        t.AutoReset = true;        t.Enabled = true;    }

So the answer to your question appears to be that the timer is not eligible for collection and will not be collected if you don't maintain a reference to it.

It's interesting to note that if you run the same test with System.Threading.Timer, you'll find that the timer is collected.