Beispiel #1
0
        /// <summary>
        /// Acquires a block of handles.
        /// </summary>
        /// <param name="blockSize">the number of handles desired
        /// </param>
        /// <returns> the first handle in the acquired block
        /// </returns>

        /* COMMENT ANGEL: Posiblemente este método haya que borrarlo
         * protected virtual long AcquireHandles(long blockSize)
         * {
         *  lock (this)
         *  {
         *      long blockStart = handleCounter;
         *      handleCounter += blockSize;
         *      return blockStart;
         *  }
         * }
         */

        #region IBootstrapObjectModelInteractionListener Members

        public override void OnReceiveHLAGenericInteraction(HLAGenericInteractionMessage msg)
        {
            if (log.IsDebugEnabled)
            {
                log.Debug("Received HLAGenericInteraction =  " + msg.ToString());
            }
        }
 public void OnReceiveHLAGenericInteraction(HLAGenericInteractionMessage msg)
 {
     message = msg;
     if (log.IsDebugEnabled)
     {
         log.Debug("Received LastMessage =  " + msg.ToString());
     }
 }