[asterisk-scf-commits] asterisk-scf/integration/slice.git branch "workqueue" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Mon Mar 7 09:22:54 CST 2011
branch "workqueue" has been updated
via ea4cc659bcdb66692356e01cc9244be1c9b98934 (commit)
from 566a81e3cebf1f9b652136637d7dde6e63bd69f4 (commit)
Summary of changes:
AsteriskSCF/System/WorkQueue/WorkQueueIf.ice | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit ea4cc659bcdb66692356e01cc9244be1c9b98934
Author: Mark Michelson <mmichelson at digium.com>
Date: Mon Mar 7 09:22:27 2011 -0600
Fix error in slice. You can't overload interface member names.
diff --git a/AsteriskSCF/System/WorkQueue/WorkQueueIf.ice b/AsteriskSCF/System/WorkQueue/WorkQueueIf.ice
index 29cdcc3..bd481a9 100644
--- a/AsteriskSCF/System/WorkQueue/WorkQueueIf.ice
+++ b/AsteriskSCF/System/WorkQueue/WorkQueueIf.ice
@@ -44,7 +44,7 @@ module V1
local interface Queue
{
void enqueueWork(Work item);
- void enqueueWork(WorkSeq items);
+ void enqueueWorkSeq(WorkSeq items);
void cancelWork(Work item);
/* return value indicates whether queue contains more work
@@ -73,7 +73,7 @@ module V1
local interface SuspendableQueue
{
void enqueueWork(SuspendableWork item);
- void enqueueWork(SuspendableWorkSeq items);
+ void enqueueWorkSeq(SuspendableWorkSeq items);
void cancelWork(SuspendableWork item);
/* return value indicates whether queue contains more work
-----------------------------------------------------------------------
--
asterisk-scf/integration/slice.git
More information about the asterisk-scf-commits
mailing list