Package com.sun.sgs.impl.kernel.TestTransactionSchedulerImpl

Examples of com.sun.sgs.impl.kernel.TestTransactionSchedulerImpl.DependentTask


    @Test public void scheduleQueuedTasks() throws Exception {
        TaskQueue queue = taskScheduler.createTaskQueue();
        AtomicInteger runCount = new AtomicInteger(0);
        for (int i = 0; i < 10; i++)
            queue.addTask(new DependentTask(runCount), taskOwner);
        Thread.sleep(500L);
        assertEquals(10, runCount.get());
    }
View Full Code Here


    }

    @Test (expected=NullPointerException.class)
        public void scheduleQueuedTasksOwnerNull() throws Exception {
        TaskQueue queue = taskScheduler.createTaskQueue();
        queue.addTask(new DependentTask(null), null);
    }
View Full Code Here

TOP

Related Classes of com.sun.sgs.impl.kernel.TestTransactionSchedulerImpl.DependentTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.