Package org.jboss.forge.furnace.impl

Examples of org.jboss.forge.furnace.impl.AddonRunnable$AddonContainerStartup


   public Void call() throws Exception
   {
      if (addon != null)
      {
         Set<AddonDependency> dependencies = addon.getDependencies();
         AddonRunnable runnable = ((AddonImpl) addon).getRunnable();
         try
         {
            if (runnable != null)
            {
               runnable.shutdown();
            }
         }
         catch (Exception e)
         {
            logger.log(Level.WARNING, "Failed to shut down addon " + addon, e);
View Full Code Here


            Future<Void> result = null;
            if (addon.getRunnable() == null)
            {
               starting.incrementAndGet();
               AddonRunnable runnable = new AddonRunnable(forge, addon);
               result = executor.submit(runnable, null);
               addon.setFuture(result);
               addon.setRunnable(runnable);
               addon.setDirty(false);
            }
View Full Code Here

TOP

Related Classes of org.jboss.forge.furnace.impl.AddonRunnable$AddonContainerStartup

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.