Same treatment for the MessagingServer... added OpenSim.Grid.MessagingServer.Modules for the modules/components of it.
parent
021225675f
commit
98178b4e9f
|
@ -40,7 +40,7 @@ using OpenSim.Framework;
|
|||
using OpenSim.Grid.Framework;
|
||||
using Timer = System.Timers.Timer;
|
||||
|
||||
namespace OpenSim.Grid.MessagingServer
|
||||
namespace OpenSim.Grid.MessagingServer.Modules
|
||||
{
|
||||
public class MessageRegionModule : IMessageRegionService
|
||||
{
|
|
@ -40,7 +40,7 @@ using OpenSim.Framework;
|
|||
using OpenSim.Grid.Framework;
|
||||
using Timer=System.Timers.Timer;
|
||||
|
||||
namespace OpenSim.Grid.MessagingServer
|
||||
namespace OpenSim.Grid.MessagingServer.Modules
|
||||
{
|
||||
public class MessageService
|
||||
{
|
|
@ -40,7 +40,7 @@ using OpenSim.Framework;
|
|||
using OpenSim.Grid.Framework;
|
||||
using Timer = System.Timers.Timer;
|
||||
|
||||
namespace OpenSim.Grid.MessagingServer
|
||||
namespace OpenSim.Grid.MessagingServer.Modules
|
||||
{
|
||||
public class MessageUserServerModule : IMessageUserServerService
|
||||
{
|
|
@ -28,7 +28,7 @@
|
|||
using System.Collections.Generic;
|
||||
using OpenMetaverse;
|
||||
|
||||
namespace OpenSim.Grid.MessagingServer
|
||||
namespace OpenSim.Grid.MessagingServer.Modules
|
||||
{
|
||||
// This is a wrapper for a List<UUID> so it can be happily stored in a hashtable.
|
||||
public class PresenceBackreferenceEntry
|
|
@ -32,7 +32,7 @@ using log4net;
|
|||
using Nwc.XmlRpc;
|
||||
using OpenSim.Data;
|
||||
|
||||
namespace OpenSim.Grid.MessagingServer
|
||||
namespace OpenSim.Grid.MessagingServer.Modules
|
||||
{
|
||||
public delegate RegionProfileData GetRegionData(ulong region_handle);
|
||||
public delegate void Done(PresenceInformer obj);
|
|
@ -25,7 +25,7 @@
|
|||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
namespace OpenSim.Grid.MessagingServer
|
||||
namespace OpenSim.Grid.MessagingServer.Modules
|
||||
{
|
||||
class PresenceService
|
||||
{
|
|
@ -29,7 +29,7 @@ using OpenMetaverse;
|
|||
using OpenSim.Framework;
|
||||
using OpenSim.Framework.Communications;
|
||||
|
||||
namespace OpenSim.Grid.MessagingServer
|
||||
namespace OpenSim.Grid.MessagingServer.Modules
|
||||
{
|
||||
public class UserDataBaseService : UserManagerBase
|
||||
{
|
|
@ -25,7 +25,7 @@
|
|||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
namespace OpenSim.Grid.MessagingServer
|
||||
namespace OpenSim.Grid.MessagingServer.Modules
|
||||
{
|
||||
public class WorkUnitBase
|
||||
{
|
|
@ -25,7 +25,7 @@
|
|||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
namespace OpenSim.Grid.MessagingServer
|
||||
namespace OpenSim.Grid.MessagingServer.Modules
|
||||
{
|
||||
public class WorkUnitPresenceUpdate : WorkUnitBase
|
||||
{
|
|
@ -35,6 +35,7 @@ using OpenSim.Framework;
|
|||
using OpenSim.Framework.Console;
|
||||
using OpenSim.Framework.Servers;
|
||||
using OpenSim.Grid.Framework;
|
||||
using OpenSim.Grid.MessagingServer.Modules;
|
||||
|
||||
namespace OpenSim.Grid.MessagingServer
|
||||
{
|
||||
|
|
34
prebuild.xml
34
prebuild.xml
|
@ -1033,6 +1033,39 @@
|
|||
</Files>
|
||||
</Project>
|
||||
|
||||
<Project name="OpenSim.Grid.MessagingServer.Modules" path="OpenSim/Grid/MessagingServer.Modules" type="Library">
|
||||
<Configuration name="Debug">
|
||||
<Options>
|
||||
<OutputPath>../../../bin/</OutputPath>
|
||||
</Options>
|
||||
</Configuration>
|
||||
<Configuration name="Release">
|
||||
<Options>
|
||||
<OutputPath>../../../bin/</OutputPath>
|
||||
</Options>
|
||||
</Configuration>
|
||||
|
||||
<ReferencePath>../../../bin/</ReferencePath>
|
||||
<Reference name="System"/>
|
||||
<Reference name="System.Data"/>
|
||||
<Reference name="System.Xml"/>
|
||||
<Reference name="OpenSim.Framework"/>
|
||||
<Reference name="OpenSim.Framework.Console"/>
|
||||
<Reference name="OpenSim.Framework.Communications"/>
|
||||
<Reference name="OpenSim.Data"/>
|
||||
<Reference name="OpenSim.Framework.Servers"/>
|
||||
<Reference name="OpenSim.Grid.Framework"/>
|
||||
<Reference name="OpenMetaverseTypes.dll"/>
|
||||
<Reference name="OpenMetaverse.dll"/>
|
||||
<Reference name="XMLRPC.dll"/>
|
||||
<Reference name="log4net.dll"/>
|
||||
|
||||
<Files>
|
||||
<Match pattern="*.cs" recurse="true"/>
|
||||
</Files>
|
||||
</Project>
|
||||
|
||||
|
||||
<Project name="OpenSim.Grid.MessagingServer" path="OpenSim/Grid/MessagingServer" type="Exe">
|
||||
<Configuration name="Debug">
|
||||
<Options>
|
||||
|
@ -1055,6 +1088,7 @@
|
|||
<Reference name="OpenSim.Data"/>
|
||||
<Reference name="OpenSim.Framework.Servers"/>
|
||||
<Reference name="OpenSim.Grid.Framework"/>
|
||||
<Reference name="OpenSim.Grid.MessagingServer.Modules"/>
|
||||
<Reference name="OpenMetaverseTypes.dll"/>
|
||||
<Reference name="OpenMetaverse.dll"/>
|
||||
<Reference name="XMLRPC.dll"/>
|
||||
|
|
Loading…
Reference in New Issue