public bool TriggerTellRegionToCloseChildConnection(UUID agentID)
        {
            handlerCloseAgentConnection = OnCloseAgentConnection;
            if (handlerCloseAgentConnection != null)
            {
                return(handlerCloseAgentConnection(agentID));
            }

            return(false);
        }
 public virtual bool TriggerCloseAgentConnection(UUID agentID)
 {
     handlerCloseAgentConnection = OnCloseAgentConnection;
     if (handlerCloseAgentConnection != null)
     {
         handlerCloseAgentConnection(agentID);
         return(true);
     }
     return(false);
 }
        protected bool CloseConnection(UUID agentID)
        {
            m_log.Debug("[INTERREGION]: Incoming Agent Close Request for agent: " + agentID);

            handlerCloseAgentConnection = OnCloseAgentConnection;
            if (handlerCloseAgentConnection != null)
            {
                return(handlerCloseAgentConnection(agentID));
            }

            return(false);
        }
        protected bool CloseConnection(UUID agentID)
        {
            m_log.Debug("[INTERREGION]: Incoming Agent Close Request for agent: " + agentID);

            handlerCloseAgentConnection = OnCloseAgentConnection;
            if (handlerCloseAgentConnection != null)
            {
                return handlerCloseAgentConnection(agentID);
            }
            
            return false;
        }
Esempio n. 5
0
        public bool TriggerTellRegionToCloseChildConnection(UUID agentID)
        {
            handlerCloseAgentConnection = OnCloseAgentConnection;
            if (handlerCloseAgentConnection != null)
                return handlerCloseAgentConnection(agentID);

            return false;
        }
Esempio n. 6
0
 public virtual bool TriggerCloseAgentConnection(UUID agentID)
 {
     handlerCloseAgentConnection = OnCloseAgentConnection;
     if (handlerCloseAgentConnection != null)
     {
         handlerCloseAgentConnection(agentID);
         return true;
     }
     return false;
 }