aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications/InterSimComms/InterSimsCommsBase.cs
blob: 972506fec0d2f28fbc0cc7e7eef8dacbfb0fd098 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework.Types;
using OpenSim.Framework;

namespace OpenGrid.Framework.Communications
{
    public abstract class InterSimsCommsBase
    {
        /// <summary>
        /// Informs a neighbouring sim to expect a child agent
        /// </summary>
        /// <param name="regionHandle"></param>
        /// <param name="agentData"></param>
        /// <returns></returns>
        public abstract bool InformNeighbourOfChildAgent(ulong regionHandle, AgentCircuitData agentData);
    }
}