aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
diff options
context:
space:
mode:
authorMelanie Thielker2009-04-10 21:08:33 +0000
committerMelanie Thielker2009-04-10 21:08:33 +0000
commit8902923b12718399edf7b6bf39ea0ff37002ae24 (patch)
treec9653ecff6ca48935438ea944e695e1503f7ffc5 /OpenSim/Region/Framework/Interfaces/IScriptModule.cs
parentExpose the XMLRPC listener port on the IXMLRPC interface to allow (diff)
downloadopensim-SC_OLD-8902923b12718399edf7b6bf39ea0ff37002ae24.zip
opensim-SC_OLD-8902923b12718399edf7b6bf39ea0ff37002ae24.tar.gz
opensim-SC_OLD-8902923b12718399edf7b6bf39ea0ff37002ae24.tar.bz2
opensim-SC_OLD-8902923b12718399edf7b6bf39ea0ff37002ae24.tar.xz
Introduce IXmlRpcRouter, an interface that allows registering XMLRPC
UUIDs with a central marshaller for grids, or publish the ULS for objects elsewhere.
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IScriptModule.cs')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IScriptModule.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScriptModule.cs b/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
index 6ba0068..7d7f904 100644
--- a/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IScriptModule.cs
@@ -25,15 +25,18 @@
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28using System;
28using OpenMetaverse; 29using OpenMetaverse;
29 30
30namespace OpenSim.Region.Framework.Interfaces 31namespace OpenSim.Region.Framework.Interfaces
31{ 32{
32 public interface IScriptModule 33 public interface IScriptModule : IRegionModule
33 { 34 {
34 string ScriptEngineName { get; } 35 string ScriptEngineName { get; }
35 36
36 string GetAssemblyName(UUID itemID); 37 string GetAssemblyName(UUID itemID);
37 string GetXMLState(UUID itemID); 38 string GetXMLState(UUID itemID);
39
40 bool PostScriptEvent(UUID itemID, string name, Object[] args);
38 } 41 }
39} 42}