Package org.springside.modules.utils.ThreadUtils

Examples of org.springside.modules.utils.ThreadUtils.CustomizableThreadFactory.newThread()


      public void run() {
      }
    };
    CustomizableThreadFactory factory = new CustomizableThreadFactory("foo");

    Thread thread = factory.newThread(runnable);
    assertEquals("foo-1", thread.getName());

    Thread thread2 = factory.newThread(runnable);
    assertEquals("foo-2", thread2.getName());
  }
View Full Code Here


    CustomizableThreadFactory factory = new CustomizableThreadFactory("foo");

    Thread thread = factory.newThread(runnable);
    assertEquals("foo-1", thread.getName());

    Thread thread2 = factory.newThread(runnable);
    assertEquals("foo-2", thread2.getName());
  }

  @Test
  public void gracefulShutdown() throws InterruptedException {
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.