[asterisk-scf-commits] asterisk-scf/release/slice.git branch "master" updated.

Commits to the Asterisk SCF project code repositories asterisk-scf-commits at lists.digium.com
Thu Feb 10 10:52:12 CST 2011


branch "master" has been updated
       via  0cde8ca15d8fe0848732a1d7fc2989a189af3f54 (commit)
      from  7d1de75662384731ee2816df25d089356102a8cd (commit)

Summary of changes:
 .../SessionCommunicationsIf.ice                    |   25 ++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)


- Log -----------------------------------------------------------------
commit 0cde8ca15d8fe0848732a1d7fc2989a189af3f54
Author: Brent Eagles <beagles at digium.com>
Date:   Thu Feb 10 13:21:35 2011 -0330

    Add add/remove default listener methods.

diff --git a/AsteriskSCF/SessionCommunications/SessionCommunicationsIf.ice b/AsteriskSCF/SessionCommunications/SessionCommunicationsIf.ice
index 614479c..e33311a 100644
--- a/AsteriskSCF/SessionCommunications/SessionCommunicationsIf.ice
+++ b/AsteriskSCF/SessionCommunications/SessionCommunicationsIf.ice
@@ -19,6 +19,7 @@
 #include <AsteriskSCF/Core/Endpoint/EndpointIf.ice>
 #include <AsteriskSCF/Core/Routing/RoutingIf.ice>
 #include <AsteriskSCF/System/Component/ComponentServiceIf.ice>
+#include <AsteriskSCF/System/ExceptionsIf.ice>
 #include <AsteriskSCF/System/Time/TimeIf.ice>
 #include <AsteriskSCF/Media/MediaIf.ice>
 
@@ -682,6 +683,30 @@ module V1
 	 */
 	void removeListener(BridgeManagerListener* listener);
 
+       /**
+        * Method called to add a listener to the list of bridge listeners that
+        * will automatically be added to every bridge that is created.
+	*
+	* @param listener A proxy to the bridge listener to add.
+        *
+        * @throws NullProxyException if the listener proxy is a null proxy.
+        *
+	*/
+        void addDefaultBridgeListener(BridgeListener* listener)
+            throws AsteriskSCF::System::V1::NullProxyException;
+
+       /**
+        * Method called to remove a listener to the list of bridge listeners that
+        * will automatically be added to every bridge that is created.
+	*
+	* @param listener A proxy to the bridge listener to remove.
+        *
+        * @throws NullProxyException if the listener proxy is a null proxy.
+        *
+	*/
+        void removeDefaultBridgeListener(BridgeListener* listener)
+            throws AsteriskSCF::System::V1::NullProxyException;
+
 	/**
 	 * Method called to get a list of bridges currently active in the bridge manager.
 	 *

-----------------------------------------------------------------------


-- 
asterisk-scf/release/slice.git



More information about the asterisk-scf-commits mailing list