bloritsch 02/05/02 09:26:50
Modified: event/src/java/org/apache/excalibur/event AbstractQueue.java
DefaultQueue.java EventHandler.java
FixedSizeQueue.java Message.java
PreparedEnqueue.java Queue.java QueueElement.java
Signal.java Sink.java SinkClosedException.java
SinkException.java SinkFullException.java
Source.java
event/src/java/org/apache/excalibur/event/command
Command.java CommandManager.java
DelayedCommand.java EventPipeline.java
RepeatedCommand.java TPCThreadManager.java
TPSPThreadManager.java ThreadManager.java
event/src/test QueueTest.java
event/src/test/org/apache/excalibur/event/test
AbstractQueueTestCase.java
DefaultQueuePerformanceTestCase.java
FixedSizeQueuePerformanceTestCase.java
FixedSizeQueueTestCase.java QueueTestCase.java
ThreadedQueueTestCase.java
Log:
update event so taht is using the new package naming scheme
Revision Changes Path
1.7 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/AbstractQueue.java
Index: AbstractQueue.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/AbstractQueue.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- AbstractQueue.java 16 Mar 2002 00:05:46 -0000 1.6
+++ AbstractQueue.java 2 May 2002 16:26:48 -0000 1.7
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
/**
* The default queue implementation is a variable size queue.
1.12 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/DefaultQueue.java
Index: DefaultQueue.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/DefaultQueue.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- DefaultQueue.java 26 Mar 2002 10:45:22 -0000 1.11
+++ DefaultQueue.java 2 May 2002 16:26:48 -0000 1.12
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
import org.apache.avalon.excalibur.collections.Buffer;
import org.apache.avalon.excalibur.collections.VariableSizeBuffer;
1.4 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/EventHandler.java
Index: EventHandler.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/EventHandler.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- EventHandler.java 16 Mar 2002 00:05:46 -0000 1.3
+++ EventHandler.java 2 May 2002 16:26:48 -0000 1.4
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
/**
* An EventHandler takes care of processing specific events in an Event Based
1.8 +2 -2
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/FixedSizeQueue.java
Index: FixedSizeQueue.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/FixedSizeQueue.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- FixedSizeQueue.java 30 Mar 2002 21:46:24 -0000 1.7
+++ FixedSizeQueue.java 2 May 2002 16:26:48 -0000 1.8
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
import org.apache.avalon.excalibur.concurrent.Mutex;
@@ -15,7 +15,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Berin Loritsch</a>
*/
-public final class FixedSizeQueue
+public final class FixedSizeQueue
extends AbstractQueue
{
private final QueueElement[] m_elements;
1.4 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/Message.java
Index: Message.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/Message.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Message.java 28 Jan 2002 15:20:22 -0000 1.3
+++ Message.java 2 May 2002 16:26:48 -0000 1.4
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
/**
* A Source implements the side of an event queue where QueueElements are
1.4 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/PreparedEnqueue.java
Index: PreparedEnqueue.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/PreparedEnqueue.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- PreparedEnqueue.java 16 Mar 2002 00:05:46 -0000 1.3
+++ PreparedEnqueue.java 2 May 2002 16:26:48 -0000 1.4
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
/**
* A <code>PreparedEnqueue</code> is an object returned from a
1.2 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/Queue.java
Index: Queue.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/Queue.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Queue.java 13 Dec 2001 22:17:50 -0000 1.1
+++ Queue.java 2 May 2002 16:26:48 -0000 1.2
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
/**
* A Source implements the side of an event queue where QueueElements are
1.6 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/QueueElement.java
Index: QueueElement.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/QueueElement.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- QueueElement.java 19 Dec 2001 18:43:10 -0000 1.5
+++ QueueElement.java 2 May 2002 16:26:48 -0000 1.6
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
/**
* A QueueElement is a type of class that can be passed through the Queues.
1.2 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/Signal.java
Index: Signal.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/Signal.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Signal.java 17 Dec 2001 18:43:40 -0000 1.1
+++ Signal.java 2 May 2002 16:26:48 -0000 1.2
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
/**
* A Signal is a specific type of QueueElement that denotes a Control code
for
1.9 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/Sink.java
Index: Sink.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/Sink.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- Sink.java 16 Mar 2002 00:05:46 -0000 1.8
+++ Sink.java 2 May 2002 16:26:48 -0000 1.9
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
/**
* A Sink implements the end of a finite-length event queue where
QueueElements
1.4 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/SinkClosedException.java
Index: SinkClosedException.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/SinkClosedException.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- SinkClosedException.java 24 Mar 2002 09:56:40 -0000 1.3
+++ SinkClosedException.java 2 May 2002 16:26:48 -0000 1.4
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
/**
* A SinkClosedException is thrown when an enqueue operation occurs on a
queue
1.4 +2 -2
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/SinkException.java
Index: SinkException.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/SinkException.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- SinkException.java 30 Mar 2002 21:31:37 -0000 1.3
+++ SinkException.java 2 May 2002 16:26:48 -0000 1.4
@@ -5,14 +5,14 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
/**
* A SourceException is thrown when an enqueue operation fails.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Berin Loritsch</a>
*/
-public class SinkException
+public class SinkException
extends Exception
{
/**
1.4 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/SinkFullException.java
Index: SinkFullException.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/SinkFullException.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- SinkFullException.java 24 Mar 2002 09:56:40 -0000 1.3
+++ SinkFullException.java 2 May 2002 16:26:48 -0000 1.4
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
/**
* A SinkException is thrown when an enqueue operation occurs on a queue
that is
1.8 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/Source.java
Index: Source.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/Source.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- Source.java 16 Mar 2002 00:05:46 -0000 1.7
+++ Source.java 2 May 2002 16:26:48 -0000 1.8
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event;
+package org.apache.excalibur.event;
/**
* A Source implements the side of an event queue where QueueElements are
1.5 +2 -2
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/Command.java
Index: Command.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/Command.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- Command.java 11 Apr 2002 17:36:23 -0000 1.4
+++ Command.java 2 May 2002 16:26:49 -0000 1.5
@@ -5,9 +5,9 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event.command;
+package org.apache.excalibur.event.command;
-import org.apache.avalon.excalibur.event.Signal;
+import org.apache.excalibur.event.Signal;
import org.apache.avalon.framework.activity.Executable;
/**
1.8 +7 -7
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/CommandManager.java
Index: CommandManager.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/CommandManager.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- CommandManager.java 11 Apr 2002 17:36:23 -0000 1.7
+++ CommandManager.java 2 May 2002 16:26:49 -0000 1.8
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event.command;
+package org.apache.excalibur.event.command;
import java.util.ArrayList;
import java.util.Collections;
@@ -15,12 +15,12 @@
import org.apache.avalon.excalibur.collections.Buffer;
import org.apache.avalon.excalibur.collections.VariableSizeBuffer;
import org.apache.avalon.excalibur.concurrent.Mutex;
-import org.apache.avalon.excalibur.event.DefaultQueue;
-import org.apache.avalon.excalibur.event.EventHandler;
-import org.apache.avalon.excalibur.event.Queue;
-import org.apache.avalon.excalibur.event.QueueElement;
-import org.apache.avalon.excalibur.event.Signal;
-import org.apache.avalon.excalibur.event.Source;
+import org.apache.excalibur.event.DefaultQueue;
+import org.apache.excalibur.event.EventHandler;
+import org.apache.excalibur.event.Queue;
+import org.apache.excalibur.event.QueueElement;
+import org.apache.excalibur.event.Signal;
+import org.apache.excalibur.event.Source;
/**
* The CommandManager handles asynchronous commands from the rest of the
system.
1.4 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/DelayedCommand.java
Index: DelayedCommand.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/DelayedCommand.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DelayedCommand.java 11 Apr 2002 17:36:23 -0000 1.3
+++ DelayedCommand.java 2 May 2002 16:26:49 -0000 1.4
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event.command;
+package org.apache.excalibur.event.command;
/**
* A DelayedCommand is a specific type of Command that denotes a an execution
1.5 +3 -3
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/EventPipeline.java
Index: EventPipeline.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/EventPipeline.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- EventPipeline.java 11 Apr 2002 17:36:23 -0000 1.4
+++ EventPipeline.java 2 May 2002 16:26:49 -0000 1.5
@@ -5,10 +5,10 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event.command;
+package org.apache.excalibur.event.command;
-import org.apache.avalon.excalibur.event.EventHandler;
-import org.apache.avalon.excalibur.event.Source;
+import org.apache.excalibur.event.EventHandler;
+import org.apache.excalibur.event.Source;
/**
* An EventPipeline is used by the ThreadManager to manage the event Queue
and
1.3 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/RepeatedCommand.java
Index: RepeatedCommand.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/RepeatedCommand.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- RepeatedCommand.java 11 Apr 2002 17:36:23 -0000 1.2
+++ RepeatedCommand.java 2 May 2002 16:26:49 -0000 1.3
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event.command;
+package org.apache.excalibur.event.command;
/**
* A Signal is a specific type of QueueElement that denotes a Control code
for
1.12 +4 -4
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/TPCThreadManager.java
Index: TPCThreadManager.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/TPCThreadManager.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- TPCThreadManager.java 11 Apr 2002 17:36:23 -0000 1.11
+++ TPCThreadManager.java 2 May 2002 16:26:49 -0000 1.12
@@ -5,13 +5,13 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event.command;
+package org.apache.excalibur.event.command;
import java.util.HashMap;
import java.util.Iterator;
import org.apache.avalon.excalibur.concurrent.Mutex;
-import org.apache.avalon.excalibur.event.EventHandler;
-import org.apache.avalon.excalibur.event.Source;
+import org.apache.excalibur.event.EventHandler;
+import org.apache.excalibur.event.Source;
import org.apache.avalon.excalibur.thread.ThreadControl;
import org.apache.avalon.excalibur.thread.ThreadPool;
import org.apache.avalon.excalibur.thread.impl.ResourceLimitingThreadPool;
@@ -26,7 +26,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Berin Loritsch</a>
*/
-public final class TPCThreadManager
+public final class TPCThreadManager
implements Runnable, ThreadManager, Disposable
{
private final ThreadPool m_threadPool;
1.9 +3 -3
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/TPSPThreadManager.java
Index: TPSPThreadManager.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/TPSPThreadManager.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- TPSPThreadManager.java 11 Apr 2002 17:36:23 -0000 1.8
+++ TPSPThreadManager.java 2 May 2002 16:26:49 -0000 1.9
@@ -5,13 +5,13 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event.command;
+package org.apache.excalibur.event.command;
import java.util.HashMap;
import java.util.Iterator;
import org.apache.avalon.excalibur.concurrent.Mutex;
-import org.apache.avalon.excalibur.event.EventHandler;
-import org.apache.avalon.excalibur.event.Source;
+import org.apache.excalibur.event.EventHandler;
+import org.apache.excalibur.event.Source;
import org.apache.avalon.excalibur.thread.ThreadControl;
import org.apache.avalon.excalibur.thread.ThreadPool;
import org.apache.avalon.excalibur.thread.impl.ResourceLimitingThreadPool;
1.3 +1 -1
jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/ThreadManager.java
Index: ThreadManager.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/java/org/apache/excalibur/event/command/ThreadManager.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ThreadManager.java 11 Apr 2002 17:36:23 -0000 1.2
+++ ThreadManager.java 2 May 2002 16:26:49 -0000 1.3
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event.command;
+package org.apache.excalibur.event.command;
/**
* A ThreadManager handles the thread policies for EventPipelines. It works
1.2 +7 -7 jakarta-avalon-excalibur/event/src/test/QueueTest.java
Index: QueueTest.java
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/event/src/test/QueueTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- QueueTest.java 25 Apr 2002 09:38:24 -0000 1.1
+++ QueueTest.java 2 May 2002 16:26:49 -0000 1.2
@@ -1,17 +1,17 @@
-import org.apache.avalon.excalibur.event.DefaultQueue;
-import org.apache.avalon.excalibur.event.Queue;
-import org.apache.avalon.excalibur.event.QueueElement;
-import org.apache.avalon.excalibur.event.Sink;
-import org.apache.avalon.excalibur.event.SinkException;
-import org.apache.avalon.excalibur.event.Source;
+import org.apache.excalibur.event.DefaultQueue;
+import org.apache.excalibur.event.Queue;
+import org.apache.excalibur.event.QueueElement;
+import org.apache.excalibur.event.Sink;
+import org.apache.excalibur.event.SinkException;
+import org.apache.excalibur.event.Source;
import org.apache.avalon.framework.CascadingRuntimeException;
/**
* Simple test to expose the thread queue bug
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Royal</a>
- * @version VSS $Revision: 1.1 $ $Date: 2002/04/25 09:38:24 $
+ * @version VSS $Revision: 1.2 $ $Date: 2002/05/02 16:26:49 $
*/
public class QueueTest
{
1.5 +4 -4
jakarta-avalon-excalibur/event/src/test/org/apache/excalibur/event/test/AbstractQueueTestCase.java
Index: AbstractQueueTestCase.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/test/org/apache/excalibur/event/test/AbstractQueueTestCase.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- AbstractQueueTestCase.java 16 Mar 2002 00:05:46 -0000 1.4
+++ AbstractQueueTestCase.java 2 May 2002 16:26:49 -0000 1.5
@@ -5,12 +5,12 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event.test;
+package org.apache.excalibur.event.test;
import junit.framework.TestCase;
-import org.apache.avalon.excalibur.event.PreparedEnqueue;
-import org.apache.avalon.excalibur.event.Queue;
-import org.apache.avalon.excalibur.event.QueueElement;
+import org.apache.excalibur.event.PreparedEnqueue;
+import org.apache.excalibur.event.Queue;
+import org.apache.excalibur.event.QueueElement;
/**
* The default queue implementation is a variabl size queue.
1.4 +2 -2
jakarta-avalon-excalibur/event/src/test/org/apache/excalibur/event/test/DefaultQueuePerformanceTestCase.java
Index: DefaultQueuePerformanceTestCase.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/test/org/apache/excalibur/event/test/DefaultQueuePerformanceTestCase.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DefaultQueuePerformanceTestCase.java 16 Mar 2002 00:05:46 -0000
1.3
+++ DefaultQueuePerformanceTestCase.java 2 May 2002 16:26:49 -0000
1.4
@@ -5,9 +5,9 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event.test;
+package org.apache.excalibur.event.test;
-import org.apache.avalon.excalibur.event.DefaultQueue;
+import org.apache.excalibur.event.DefaultQueue;
/**
* The default queue implementation is a variabl size queue.
1.3 +2 -2
jakarta-avalon-excalibur/event/src/test/org/apache/excalibur/event/test/FixedSizeQueuePerformanceTestCase.java
Index: FixedSizeQueuePerformanceTestCase.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/test/org/apache/excalibur/event/test/FixedSizeQueuePerformanceTestCase.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- FixedSizeQueuePerformanceTestCase.java 16 Mar 2002 00:05:46 -0000
1.2
+++ FixedSizeQueuePerformanceTestCase.java 2 May 2002 16:26:49 -0000
1.3
@@ -5,9 +5,9 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event.test;
+package org.apache.excalibur.event.test;
-import org.apache.avalon.excalibur.event.FixedSizeQueue;
+import org.apache.excalibur.event.FixedSizeQueue;
/**
* The default queue implementation is a variabl size queue.
1.8 +2 -2
jakarta-avalon-excalibur/event/src/test/org/apache/excalibur/event/test/FixedSizeQueueTestCase.java
Index: FixedSizeQueueTestCase.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/test/org/apache/excalibur/event/test/FixedSizeQueueTestCase.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- FixedSizeQueueTestCase.java 16 Mar 2002 00:05:46 -0000 1.7
+++ FixedSizeQueueTestCase.java 2 May 2002 16:26:50 -0000 1.8
@@ -5,9 +5,9 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event.test;
+package org.apache.excalibur.event.test;
-import org.apache.avalon.excalibur.event.FixedSizeQueue;
+import org.apache.excalibur.event.FixedSizeQueue;
/**
* The default queue implementation is a variabl size queue.
1.8 +2 -2
jakarta-avalon-excalibur/event/src/test/org/apache/excalibur/event/test/QueueTestCase.java
Index: QueueTestCase.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/test/org/apache/excalibur/event/test/QueueTestCase.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- QueueTestCase.java 16 Mar 2002 00:05:46 -0000 1.7
+++ QueueTestCase.java 2 May 2002 16:26:50 -0000 1.8
@@ -5,9 +5,9 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.event.test;
+package org.apache.excalibur.event.test;
-import org.apache.avalon.excalibur.event.DefaultQueue;
+import org.apache.excalibur.event.DefaultQueue;
/**
* The default queue implementation is a variabl size queue.
1.4 +9 -9
jakarta-avalon-excalibur/event/src/test/org/apache/excalibur/event/test/ThreadedQueueTestCase.java
Index: ThreadedQueueTestCase.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/event/src/test/org/apache/excalibur/event/test/ThreadedQueueTestCase.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ThreadedQueueTestCase.java 30 Mar 2002 21:31:59 -0000 1.3
+++ ThreadedQueueTestCase.java 2 May 2002 16:26:50 -0000 1.4
@@ -1,21 +1,21 @@
-package org.apache.avalon.excalibur.event.test;
+package org.apache.excalibur.event.test;
import junit.framework.TestCase;
-import org.apache.avalon.excalibur.event.DefaultQueue;
-import org.apache.avalon.excalibur.event.Queue;
-import org.apache.avalon.excalibur.event.QueueElement;
-import org.apache.avalon.excalibur.event.Sink;
-import org.apache.avalon.excalibur.event.SinkException;
-import org.apache.avalon.excalibur.event.Source;
+import org.apache.excalibur.event.DefaultQueue;
+import org.apache.excalibur.event.Queue;
+import org.apache.excalibur.event.QueueElement;
+import org.apache.excalibur.event.Sink;
+import org.apache.excalibur.event.SinkException;
+import org.apache.excalibur.event.Source;
/**
* Simple test to expose the thread queue bug
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Royal</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Leo Sutic</a>
- * @version VSS $Revision: 1.3 $ $Date: 2002/03/30 21:31:59 $
+ * @version VSS $Revision: 1.4 $ $Date: 2002/05/02 16:26:50 $
*/
-public class ThreadedQueueTestCase
+public class ThreadedQueueTestCase
extends TestCase
{
private QueueStart start;
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>