[jboss-cvs] JBoss Messaging SVN: r7152 - in trunk: src/main/org/jboss/messaging/core/journal/impl and 5 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Jun 1 16:51:26 EDT 2009


Author: clebert.suconic at jboss.com
Date: 2009-06-01 16:51:26 -0400 (Mon, 01 Jun 2009)
New Revision: 7152

Added:
   trunk/src/main/org/jboss/messaging/utils/timedbuffer/
   trunk/tests/src/org/jboss/messaging/tests/unit/util/timedbuffer/
Removed:
   trunk/src/main/org/jboss/messaging/core/asyncio/timedbuffer/
   trunk/tests/src/org/jboss/messaging/tests/unit/core/asyncio/timedbuffer/
Modified:
   trunk/src/main/org/jboss/messaging/core/journal/impl/AIOSequentialFile.java
   trunk/src/main/org/jboss/messaging/utils/timedbuffer/TimedBuffer.java
   trunk/src/main/org/jboss/messaging/utils/timedbuffer/TimedBufferObserver.java
   trunk/tests/src/org/jboss/messaging/tests/unit/util/timedbuffer/TimedBufferTest.java
Log:
renaming package timedbuffer

Modified: trunk/src/main/org/jboss/messaging/core/journal/impl/AIOSequentialFile.java
===================================================================
--- trunk/src/main/org/jboss/messaging/core/journal/impl/AIOSequentialFile.java	2009-06-01 20:35:54 UTC (rev 7151)
+++ trunk/src/main/org/jboss/messaging/core/journal/impl/AIOSequentialFile.java	2009-06-01 20:51:26 UTC (rev 7152)
@@ -33,14 +33,14 @@
 import org.jboss.messaging.core.asyncio.AIOCallback;
 import org.jboss.messaging.core.asyncio.AsynchronousFile;
 import org.jboss.messaging.core.asyncio.impl.AsynchronousFileImpl;
-import org.jboss.messaging.core.asyncio.timedbuffer.TimedBuffer;
-import org.jboss.messaging.core.asyncio.timedbuffer.TimedBufferObserver;
 import org.jboss.messaging.core.exception.MessagingException;
 import org.jboss.messaging.core.journal.BufferCallback;
 import org.jboss.messaging.core.journal.IOCallback;
 import org.jboss.messaging.core.journal.SequentialFile;
 import org.jboss.messaging.core.journal.SequentialFileFactory;
 import org.jboss.messaging.core.logging.Logger;
+import org.jboss.messaging.utils.timedbuffer.TimedBuffer;
+import org.jboss.messaging.utils.timedbuffer.TimedBufferObserver;
 
 /**
  * 

Copied: trunk/src/main/org/jboss/messaging/utils/timedbuffer (from rev 7151, trunk/src/main/org/jboss/messaging/core/asyncio/timedbuffer)

Modified: trunk/src/main/org/jboss/messaging/utils/timedbuffer/TimedBuffer.java
===================================================================
--- trunk/src/main/org/jboss/messaging/core/asyncio/timedbuffer/TimedBuffer.java	2009-06-01 20:35:54 UTC (rev 7151)
+++ trunk/src/main/org/jboss/messaging/utils/timedbuffer/TimedBuffer.java	2009-06-01 20:51:26 UTC (rev 7152)
@@ -20,7 +20,7 @@
  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
 
-package org.jboss.messaging.core.asyncio.timedbuffer;
+package org.jboss.messaging.utils.timedbuffer;
 
 import java.nio.ByteBuffer;
 import java.util.ArrayList;

Modified: trunk/src/main/org/jboss/messaging/utils/timedbuffer/TimedBufferObserver.java
===================================================================
--- trunk/src/main/org/jboss/messaging/core/asyncio/timedbuffer/TimedBufferObserver.java	2009-06-01 20:35:54 UTC (rev 7151)
+++ trunk/src/main/org/jboss/messaging/utils/timedbuffer/TimedBufferObserver.java	2009-06-01 20:51:26 UTC (rev 7152)
@@ -21,7 +21,7 @@
  */
 
 
-package org.jboss.messaging.core.asyncio.timedbuffer;
+package org.jboss.messaging.utils.timedbuffer;
 
 import java.nio.ByteBuffer;
 import java.util.List;

Copied: trunk/tests/src/org/jboss/messaging/tests/unit/util/timedbuffer (from rev 7151, trunk/tests/src/org/jboss/messaging/tests/unit/core/asyncio/timedbuffer)

Modified: trunk/tests/src/org/jboss/messaging/tests/unit/util/timedbuffer/TimedBufferTest.java
===================================================================
--- trunk/tests/src/org/jboss/messaging/tests/unit/core/asyncio/timedbuffer/TimedBufferTest.java	2009-06-01 20:35:54 UTC (rev 7151)
+++ trunk/tests/src/org/jboss/messaging/tests/unit/util/timedbuffer/TimedBufferTest.java	2009-06-01 20:51:26 UTC (rev 7152)
@@ -21,7 +21,7 @@
  */
 
 
-package org.jboss.messaging.tests.unit.core.asyncio.timedbuffer;
+package org.jboss.messaging.tests.unit.util.timedbuffer;
 
 import java.nio.ByteBuffer;
 import java.util.ArrayList;
@@ -29,9 +29,9 @@
 import java.util.concurrent.atomic.AtomicInteger;
 
 import org.jboss.messaging.core.asyncio.AIOCallback;
-import org.jboss.messaging.core.asyncio.timedbuffer.TimedBuffer;
-import org.jboss.messaging.core.asyncio.timedbuffer.TimedBufferObserver;
 import org.jboss.messaging.tests.util.UnitTestCase;
+import org.jboss.messaging.utils.timedbuffer.TimedBuffer;
+import org.jboss.messaging.utils.timedbuffer.TimedBufferObserver;
 
 /**
  * A TimedBufferTest
@@ -79,7 +79,7 @@
          }
 
          /* (non-Javadoc)
-          * @see org.jboss.messaging.core.asyncio.timedbuffer.TimedBufferObserver#newBuffer(int, int)
+          * @see org.jboss.messaging.utils.timedbuffer.TimedBufferObserver#newBuffer(int, int)
           */
          public ByteBuffer newBuffer(int minSize, int maxSize)
          {




More information about the jboss-cvs-commits mailing list