aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/MessagingServer/MessageService.cs
diff options
context:
space:
mode:
authorlbsa712009-02-12 09:53:12 +0000
committerlbsa712009-02-12 09:53:12 +0000
commit801da4346aeb3c08969c4845f5c595135a64470a (patch)
tree2f06e24c72e0d513c8e4c6aa9b75cd2c7b50f393 /OpenSim/Grid/MessagingServer/MessageService.cs
parentThanks Kitto Flora for a patch that adds automatic min fly height to ODE - Ma... (diff)
downloadopensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.zip
opensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.tar.gz
opensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.tar.bz2
opensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.tar.xz
* optimized usings.
Diffstat (limited to 'OpenSim/Grid/MessagingServer/MessageService.cs')
-rw-r--r--OpenSim/Grid/MessagingServer/MessageService.cs10
1 files changed, 6 insertions, 4 deletions
diff --git a/OpenSim/Grid/MessagingServer/MessageService.cs b/OpenSim/Grid/MessagingServer/MessageService.cs
index 7a4a47f..36f8b91 100644
--- a/OpenSim/Grid/MessagingServer/MessageService.cs
+++ b/OpenSim/Grid/MessagingServer/MessageService.cs
@@ -29,13 +29,15 @@ using System;
29using System.Collections; 29using System.Collections;
30using System.Collections.Generic; 30using System.Collections.Generic;
31using System.Net; 31using System.Net;
32using System.Threading;
33using System.Reflection; 32using System.Reflection;
34using OpenMetaverse; 33using System.Threading;
34using System.Timers;
35using log4net; 35using log4net;
36using Nwc.XmlRpc; 36using Nwc.XmlRpc;
37using OpenMetaverse;
37using OpenSim.Data; 38using OpenSim.Data;
38using OpenSim.Framework; 39using OpenSim.Framework;
40using Timer=System.Timers.Timer;
39 41
40namespace OpenSim.Grid.MessagingServer 42namespace OpenSim.Grid.MessagingServer
41{ 43{
@@ -52,7 +54,7 @@ namespace OpenSim.Grid.MessagingServer
52 // a dictionary of all current regions this server knows about 54 // a dictionary of all current regions this server knows about
53 private Dictionary<ulong, RegionProfileData> m_regionInfoCache = new Dictionary<ulong,RegionProfileData>(); 55 private Dictionary<ulong, RegionProfileData> m_regionInfoCache = new Dictionary<ulong,RegionProfileData>();
54 56
55 private System.Timers.Timer reconnectTimer = new System.Timers.Timer(300000); // 5 mins 57 private Timer reconnectTimer = new Timer(300000); // 5 mins
56 58
57 public MessageService(MessageServerConfig cfg) 59 public MessageService(MessageServerConfig cfg)
58 { 60 {
@@ -502,7 +504,7 @@ namespace OpenSim.Grid.MessagingServer
502 return regionProfile; 504 return regionProfile;
503 } 505 }
504 506
505 public void registerWithUserServer(object sender, System.Timers.ElapsedEventArgs e) 507 public void registerWithUserServer(object sender, ElapsedEventArgs e)
506 { 508 {
507 registerWithUserServer(); 509 registerWithUserServer();
508 } 510 }