aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Statistics/UserStatsCollector.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-05-14 21:27:54 +0000
committerJustin Clarke Casey2008-05-14 21:27:54 +0000
commit56faeafdae5b4b76593e268bc994a7f663bd5685 (patch)
tree720efa22432151d2faaab08c61065a0ba02a047f /OpenSim/Framework/Statistics/UserStatsCollector.cs
parent* Fixed attaching objects that are in-world. (diff)
downloadopensim-SC_OLD-56faeafdae5b4b76593e268bc994a7f663bd5685.zip
opensim-SC_OLD-56faeafdae5b4b76593e268bc994a7f663bd5685.tar.gz
opensim-SC_OLD-56faeafdae5b4b76593e268bc994a7f663bd5685.tar.bz2
opensim-SC_OLD-56faeafdae5b4b76593e268bc994a7f663bd5685.tar.xz
* Refactor: Renaming non viewer statistics classes from Reporters to Collectors - this seems more intuitive
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Statistics/UserStatsCollector.cs (renamed from OpenSim/Framework/Statistics/UserStatsReporter.cs)6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Statistics/UserStatsReporter.cs b/OpenSim/Framework/Statistics/UserStatsCollector.cs
index ce82615..80cd46e 100644
--- a/OpenSim/Framework/Statistics/UserStatsReporter.cs
+++ b/OpenSim/Framework/Statistics/UserStatsCollector.cs
@@ -30,9 +30,9 @@ using System.Timers;
30namespace OpenSim.Framework.Statistics 30namespace OpenSim.Framework.Statistics
31{ 31{
32 /// <summary> 32 /// <summary>
33 /// Description of UserStatsReporter. 33 /// Collects user service statistics
34 /// </summary> 34 /// </summary>
35 public class UserStatsReporter 35 public class UserStatsCollector
36 { 36 {
37 private Timer ageStatsTimer = new Timer(24 * 60 * 60 * 1000); 37 private Timer ageStatsTimer = new Timer(24 * 60 * 60 * 1000);
38 38
@@ -48,7 +48,7 @@ namespace OpenSim.Framework.Statistics
48 private int logouts; 48 private int logouts;
49 public int Logouts { get { return logouts; } } 49 public int Logouts { get { return logouts; } }
50 50
51 public UserStatsReporter() 51 public UserStatsCollector()
52 { 52 {
53 ageStatsTimer.Elapsed += new ElapsedEventHandler(OnAgeing); 53 ageStatsTimer.Elapsed += new ElapsedEventHandler(OnAgeing);
54 ageStatsTimer.Enabled = true; 54 ageStatsTimer.Enabled = true;