2007-06-09 21:04:13 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
using OpenSim.Framework.Types;
|
|
|
|
using OpenSim.Framework;
|
|
|
|
|
|
|
|
namespace OpenGrid.Framework.Communications.GridServer
|
|
|
|
{
|
|
|
|
public class GridCommsManagerBase
|
|
|
|
{
|
|
|
|
public GridCommsManagerBase()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="regionInfo"></param>
|
|
|
|
/// <returns></returns>
|
2007-06-10 18:51:45 +00:00
|
|
|
public virtual RegionCommsHostBase RegisterRegion(RegionInfo regionInfo)
|
2007-06-09 21:04:13 +00:00
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
///
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="regionInfo"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
public virtual List<RegionInfo> RequestNeighbours(RegionInfo regionInfo)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|