Package com.whatevernot.engine.standard

Examples of com.whatevernot.engine.standard.Engine


   * @param blockingQueue The queue.
   * @return The engine.
   */
  public static IEngine makeEngine(BlockingQueue<Runnable> blockingQueue)
  {
    return new Engine(blockingQueue);
  }
View Full Code Here


   * execution of the engine.
   * @return The engine.
   */
  public static IEngine makeEngine(ITimer timer)
  {
    return new Engine(timer);
  }
View Full Code Here

TOP

Related Classes of com.whatevernot.engine.standard.Engine

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.