[Freeswitch-svn] [commit] r8260 - freeswitch/trunk/scripts/contrib/verifier/EventSocket/trunk/FreeSwitchEventSocket/Commands

Freeswitch SVN verifier at freeswitch.org
Sun May 4 11:16:30 EDT 2008


Author: verifier
Date: Sun May  4 11:16:29 2008
New Revision: 8260

Modified:
   freeswitch/trunk/scripts/contrib/verifier/EventSocket/trunk/FreeSwitchEventSocket/Commands/CmdBase.cs
   freeswitch/trunk/scripts/contrib/verifier/EventSocket/trunk/FreeSwitchEventSocket/Commands/HoldCmd.cs

Log:
bugfixes

Modified: freeswitch/trunk/scripts/contrib/verifier/EventSocket/trunk/FreeSwitchEventSocket/Commands/CmdBase.cs
==============================================================================
--- freeswitch/trunk/scripts/contrib/verifier/EventSocket/trunk/FreeSwitchEventSocket/Commands/CmdBase.cs	(original)
+++ freeswitch/trunk/scripts/contrib/verifier/EventSocket/trunk/FreeSwitchEventSocket/Commands/CmdBase.cs	Sun May  4 11:16:29 2008
@@ -8,6 +8,10 @@
 
     public abstract class CmdBase
     {
+        /// <summary>
+        /// Node that the reply handler is removed after it have been invoked.
+        /// This is to make sure that the command can be garbage collected when it's done.
+        /// </summary>
         public event ReplyHandler ReplyReceived;
 
         private object _contextData;

Modified: freeswitch/trunk/scripts/contrib/verifier/EventSocket/trunk/FreeSwitchEventSocket/Commands/HoldCmd.cs
==============================================================================
--- freeswitch/trunk/scripts/contrib/verifier/EventSocket/trunk/FreeSwitchEventSocket/Commands/HoldCmd.cs	(original)
+++ freeswitch/trunk/scripts/contrib/verifier/EventSocket/trunk/FreeSwitchEventSocket/Commands/HoldCmd.cs	Sun May  4 11:16:29 2008
@@ -20,10 +20,5 @@
         {
             get { return (_activate ? string.Empty : "off ") + _sessionId; }
         }
-
-        public override CommandReply CreateReply(string dataToParse)
-        {
-            return base.CreateReply(dataToParse);
-        }
     }
 }



More information about the Freeswitch-svn mailing list