Examples of NoopLocal


Examples of org.jboss.ejb3.core.test.ejbthree1703.NoopLocal

   */
  
   @Test
   public void testCreateCount() throws Exception
   {
      NoopLocal bean = lookup("NoopBean/local", NoopLocal.class);
      bean.noop();
      assertEquals(1, container.getPool().getCreateCount());
      assertEquals("the pool should have grown", 1, container.getPool().getMaxSize());
      assertEquals("the instance should be available", 1, container.getPool().getAvailableCount());
   }
View Full Code Here

Examples of org.jboss.ejb3.core.test.ejbthree1703.NoopLocal

    * InUse is calculated as: inUse = maxSize - available
    */
   @Test
   public void testInUse() throws Exception
   {
      final NoopLocal bean = lookup("NoopBean/local", NoopLocal.class);
      ExecutorService service = Executors.newSingleThreadExecutor();
      // exercise the thread
      /*
      Future<Void> future = service.submit(new Callable<Void> () {
         public Void call() throws Exception
         {
            bean.noop();
            return null;
         }
      });
      future.get(5, SECONDS);
      assertEquals(1, container.getPool().getCreateCount());
      assertEquals("the pool should have grown", 1, container.getPool().getMaxSize());
      assertEquals("the instance should be available", 1, container.getPool().getAvailableCount());
      */
     
      final CyclicBarrier entree = new CyclicBarrier(2);
      final CyclicBarrier exit = new CyclicBarrier(2);
      Future<Void> future = service.submit(new Callable<Void> () {
         public Void call() throws Exception
         {
            bean.shoo(entree, exit);
            return null;
         }
      });
     
      entree.await(5, SECONDS);
View Full Code Here

Examples of org.jboss.ejb3.core.test.ejbthree1703.NoopLocal

   }
  
   @Test
   public void testReentrant() throws Exception
   {
      final NoopLocal bean = lookup("NoopBean/local", NoopLocal.class);
      ExecutorService service = Executors.newSingleThreadExecutor();
      final CyclicBarrier entree = new CyclicBarrier(2);
      final CyclicBarrier exit = new CyclicBarrier(2);
      Future<Void> future = service.submit(new Callable<Void> () {
         public Void call() throws Exception
         {
            bean.reentrant(1, entree, exit);
            return null;
         }
      });
     
      entree.await(5, SECONDS);
View Full Code Here

Examples of org.jboss.ejb3.core.test.ejbthree1703.NoopLocal

   }
  
   @Test
   public void testThreeThreads() throws Exception
   {
      final NoopLocal bean = lookup("NoopBean/local", NoopLocal.class);
      ExecutorService service = Executors.newFixedThreadPool(2);
     
      final CyclicBarrier entree = new CyclicBarrier(3);
      final CyclicBarrier exit = new CyclicBarrier(3);
      Callable<Void> task = new Callable<Void> () {
         public Void call() throws Exception
         {
            bean.shoo(entree, exit);
            return null;
         }
      };
      Future<?> futures[] = new Future[2];
      futures[0] = service.submit(task);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.