renamed package

This commit is contained in:
nathan 2016-01-27 00:43:16 +01:00
parent 3483205dfd
commit 618e4034f2
23 changed files with 23 additions and 23 deletions

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
public abstract class AbstractPerfTestDisruptor public abstract class AbstractPerfTestDisruptor

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
@SuppressWarnings("Duplicates") @SuppressWarnings("Duplicates")
public class ArrayBlockingQueue extends Base_BlockingQueue { public class ArrayBlockingQueue extends Base_BlockingQueue {

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collections; import java.util.Collections;

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import com.lmax.disruptor.*; import com.lmax.disruptor.*;
import com.lmax.disruptor.util.DaemonThreadFactory; import com.lmax.disruptor.util.DaemonThreadFactory;

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collections; import java.util.Collections;

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collections; import java.util.Collections;

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collections; import java.util.Collections;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package dorkbox.util.messagebus; package dorkbox.util.messagebus.perfTests;
import com.esotericsoftware.reflectasm.MethodAccess; import com.esotericsoftware.reflectasm.MethodAccess;
import java.lang.invoke.MethodHandle; import java.lang.invoke.MethodHandle;

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
@SuppressWarnings("Duplicates") @SuppressWarnings("Duplicates")
public class ConcurrentLinkedQueue extends Base_BlockingQueue { public class ConcurrentLinkedQueue extends Base_BlockingQueue {

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
public class LinkedBlockingQueue { public class LinkedBlockingQueue {
public static final int REPETITIONS = 50 * 1000 * 100; public static final int REPETITIONS = 50 * 1000 * 100;

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
public class LinkedTransferQueue { public class LinkedTransferQueue {
public static final int REPETITIONS = 50 * 1000 * 100; public static final int REPETITIONS = 50 * 1000 * 100;

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
@SuppressWarnings("Duplicates") @SuppressWarnings("Duplicates")
public class MpmcArrayQueue extends Base_BlockingQueue { public class MpmcArrayQueue extends Base_BlockingQueue {

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import dorkbox.util.messagebus.annotations.Handler; import dorkbox.util.messagebus.annotations.Handler;
import dorkbox.util.messagebus.common.MessageHandler; import dorkbox.util.messagebus.common.MessageHandler;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import org.jctools.queues.MpmcArrayQueue; import org.jctools.queues.MpmcArrayQueue;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import org.jctools.queues.MpmcArrayQueue; import org.jctools.queues.MpmcArrayQueue;

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import dorkbox.util.messagebus.MTAQ_Accessor; import dorkbox.util.messagebus.MTAQ_Accessor;

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import dorkbox.util.messagebus.MTAQ_Accessor; import dorkbox.util.messagebus.MTAQ_Accessor;
import dorkbox.util.messagebus.MultiNode; import dorkbox.util.messagebus.MultiNode;

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import dorkbox.util.messagebus.MTAQ_Accessor; import dorkbox.util.messagebus.MTAQ_Accessor;

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
public class SynchronousQueue { public class SynchronousQueue {
public static final int REPETITIONS = 50 * 1000 * 100; public static final int REPETITIONS = 50 * 1000 * 100;

View File

@ -1,4 +1,4 @@
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import com.lmax.disruptor.BusySpinWaitStrategy; import com.lmax.disruptor.BusySpinWaitStrategy;
import com.lmax.disruptor.IgnoreExceptionHandler; import com.lmax.disruptor.IgnoreExceptionHandler;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import com.lmax.disruptor.WorkHandler; import com.lmax.disruptor.WorkHandler;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import com.lmax.disruptor.EventFactory; import com.lmax.disruptor.EventFactory;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package dorkbox.util.messagebus.queuePerf; package dorkbox.util.messagebus.perfTests;
import com.lmax.disruptor.RingBuffer; import com.lmax.disruptor.RingBuffer;