155156157158159160161162163164165
// this is not supposed to throw an exception. // As you could have start being called twice as Stores are dynamically // created, on a multi-thread environment storeImpl.start(); storeImpl.stop(); } public void testPageWithNIO() throws Exception {
739740741742743744745746747748749
storeImpl.startPaging(); assertNotNull(storeImpl.getCurrentPage()); storeImpl.stop(); } public void testOrderOnPaging() throws Throwable { clearData();
883884885886887888889890891892893
consumer.start(); producerThread.join(); consumer.join(); storeImpl.stop(); for (Throwable e : errors) { throw e; }
157158159160161162163164165166167
741742743744745746747748749750751
885886887888889890891892893894895
742743744745746747748749750751752
886887888889890891892893894895896
158159160161162163164165166167168
141142143144145146147148149150151