Examples of asVerticle()


Examples of net.kuujo.vertigo.component.impl.DefaultComponentContext.asVerticle()

      for (ComponentContext component : update.components()) {
        if (!components.containsKey(component.name())) {
          if (component.isModule()) {
            components.put(component.name(), DefaultModuleContext.Builder.newBuilder(component.asModule()).build().setNetworkContext(this));
          } else if (component.isVerticle()) {
            components.put(component.name(), DefaultVerticleContext.Builder.newBuilder(component.asVerticle()).build().setNetworkContext(this));
          }
        }
      }
    }
    super.notify(this);
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.