Package limelight.background

Examples of limelight.background.CacheCleanerLoop


    if(context.animationLoop == null)
      context.animationLoop = new AnimationLoop();

    if(context.cacheCleaner == null)
      context.cacheCleaner = new CacheCleanerLoop();

    if(Opts.isOn(options.get("start-background-threads")))
    {
      Log.config("Boot - starting background threads");
      context.panelPanter.start();
View Full Code Here


  public void testStopping() throws Exception
  {
    context.panelPanter = new PanelPainterLoop().started();
    context.animationLoop = new AnimationLoop().started();
    context.cacheCleaner = new CacheCleanerLoop().started();

    context.shutdown();

    assertEquals(false, context.panelPanter.isRunning());
    assertEquals(false, context.animationLoop.isRunning());
View Full Code Here

TOP

Related Classes of limelight.background.CacheCleanerLoop

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.