First step in giving the messaging server the modular refactoring treatment. As with the other two servers, this is very much a work in progress.

This commit is contained in:
MW
2009-02-22 19:19:24 +00:00
parent 648f55ed11
commit f3a24e432f
8 changed files with 644 additions and 290 deletions

View File

@@ -0,0 +1,8 @@
using System;
namespace OpenSim.Grid.MessagingServer
{
public interface IMessageUserServerService
{
bool SendToUserServer(System.Collections.Hashtable request, string method);
}
}