Package eu.mosaic_cloud.components.core

Examples of eu.mosaic_cloud.components.core.ComponentEnvironment


    final BasicComponent component = BasicComponent.create (environment.reactor, environment.exceptions);
    environment.transcript.traceDebugging ("initializing component...");
    component.initialize ();
    environment.transcript.traceDebugging ("creating callbacks...");
    final ComponentController componentController = component.getController ();
    final ComponentEnvironment componentEnvironment = ComponentEnvironment.create (environment.identifier, environment.classLoader, environment.reactor, environment.threading, environment.exceptions, environment.options);
    final ComponentCallbacks componentCallbacks;
    try {
      componentCallbacks = callbacksProvider.provide (componentEnvironment);
    } catch (final CaughtException.Wrapper wrapper) {
      throw (wrapper.exception.caught);
View Full Code Here

TOP

Related Classes of eu.mosaic_cloud.components.core.ComponentEnvironment

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.