aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMW2009-05-15 12:10:44 +0000
committerMW2009-05-15 12:10:44 +0000
commit5a97979bd75658e89d7b74e5cb349b4b0242a217 (patch)
treeddc93717f9ebba0b0c54eaa090937436f912267e
parentFixed minor problem in prebuild.xml (diff)
downloadopensim-SC_OLD-5a97979bd75658e89d7b74e5cb349b4b0242a217.zip
opensim-SC_OLD-5a97979bd75658e89d7b74e5cb349b4b0242a217.tar.gz
opensim-SC_OLD-5a97979bd75658e89d7b74e5cb349b4b0242a217.tar.bz2
opensim-SC_OLD-5a97979bd75658e89d7b74e5cb349b4b0242a217.tar.xz
Added PostInitialise method to IGridPlugin.
Diffstat (limited to '')
-rw-r--r--OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs5
-rw-r--r--OpenSim/Grid/GridServer/IGridPlugin.cs1
2 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs b/OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs
index 420249d..f1acaf9 100644
--- a/OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs
+++ b/OpenSim/Grid/GridServer.Modules/GridServerPlugin.cs
@@ -69,6 +69,11 @@ namespace OpenSim.Grid.GridServer.Modules
69 SetupGridServices(); 69 SetupGridServices();
70 } 70 }
71 71
72 public void PostInitialise()
73 {
74
75 }
76
72 #endregion 77 #endregion
73 78
74 #region IPlugin Members 79 #region IPlugin Members
diff --git a/OpenSim/Grid/GridServer/IGridPlugin.cs b/OpenSim/Grid/GridServer/IGridPlugin.cs
index e2557c0..78aba0c 100644
--- a/OpenSim/Grid/GridServer/IGridPlugin.cs
+++ b/OpenSim/Grid/GridServer/IGridPlugin.cs
@@ -33,6 +33,7 @@ namespace OpenSim.Grid.GridServer
33 public interface IGridPlugin : IPlugin 33 public interface IGridPlugin : IPlugin
34 { 34 {
35 void Initialise(GridServerBase gridServer); 35 void Initialise(GridServerBase gridServer);
36 void PostInitialise();
36 } 37 }
37 38
38 public class GridPluginInitialiser : PluginInitialiserBase 39 public class GridPluginInitialiser : PluginInitialiserBase