HelloNeighbour() public method

public HelloNeighbour ( ulong regionHandle, RegionInfo thisRegion ) : GridRegion
regionHandle ulong
thisRegion OpenSim.Framework.RegionInfo
return OpenSim.Services.Interfaces.GridRegion
        public override bool HelloNeighbour(ulong regionHandle, RegionInfo thisRegion)
        {
            if (m_LocalService.HelloNeighbour(regionHandle, thisRegion))
            {
                return(true);
            }

            return(base.HelloNeighbour(regionHandle, thisRegion));
        }
        public override GridRegion HelloNeighbour(ulong regionHandle, RegionInfo thisRegion)
        {
            GridRegion region = m_LocalService.HelloNeighbour(regionHandle, thisRegion);

            if (region != null)
            {
                return(region);
            }

            return(base.HelloNeighbour(regionHandle, thisRegion));
        }