[asterisk-scf-commits] asterisk-scf/integration/slice.git branch "async-bridging" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Thu Apr 7 08:29:47 CDT 2011
branch "async-bridging" has been updated
via bb880eda434bc666a74167939e8bb5d247f05812 (commit)
from 235a30454f6ae225ecbe64b570aaeb0f7b11b75e (commit)
Summary of changes:
.../SessionCommunicationsIf.ice | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
- Log -----------------------------------------------------------------
commit bb880eda434bc666a74167939e8bb5d247f05812
Author: Brent Eagles <beagles at digium.com>
Date: Thu Apr 7 10:59:31 2011 -0230
Fix missing throws declarations.
diff --git a/AsteriskSCF/SessionCommunications/SessionCommunicationsIf.ice b/AsteriskSCF/SessionCommunications/SessionCommunicationsIf.ice
index 549102a..d7582f9 100644
--- a/AsteriskSCF/SessionCommunications/SessionCommunicationsIf.ice
+++ b/AsteriskSCF/SessionCommunications/SessionCommunicationsIf.ice
@@ -563,7 +563,7 @@ module V1
*/
["amd"]
void addSessions(SessionSeq session)
- throws InvalidSessions;
+ throws InvalidSessions, BridgeSessionOperationFailed;
/**
* Abruptly destroy the bridge. Sessions will not be stopped.
@@ -590,7 +590,7 @@ module V1
*/
["amd"]
void removeSessions(SessionSeq sessions)
- throws InvalidSessions;
+ throws InvalidSessions, BridgeSessionOperationFailed;
/**
* Nicely shutdown the bridge. Participating sessions are disconnected.
@@ -631,9 +631,9 @@ module V1
*
* @throws SessionNotFound if the session to be replaced is not on the bridge.
*/
- ["amd"]
+ ["amd"]
void replaceSession(Session* sessionToReplace, SessionSeq newSessions)
- throws InvalidSessions, SessionNotFound;
+ throws InvalidSessions, SessionNotFound, BridgeSessionOperationFailed;
};
/**
-----------------------------------------------------------------------
--
asterisk-scf/integration/slice.git
More information about the asterisk-scf-commits
mailing list