Introduce IXmlRpcRouter, an interface that allows registering XMLRPC

UUIDs with a central marshaller for grids, or publish the ULS for objects
elsewhere.
This commit is contained in:
Melanie Thielker
2009-04-10 21:08:33 +00:00
parent b43226019a
commit 8902923b12
6 changed files with 76 additions and 1 deletions

View File

@@ -25,15 +25,18 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
using System;
using OpenMetaverse;
namespace OpenSim.Region.Framework.Interfaces
{
public interface IScriptModule
public interface IScriptModule : IRegionModule
{
string ScriptEngineName { get; }
string GetAssemblyName(UUID itemID);
string GetXMLState(UUID itemID);
bool PostScriptEvent(UUID itemID, string name, Object[] args);
}
}