Package eu.mosaic_cloud.tools.threading.core

Examples of eu.mosaic_cloud.tools.threading.core.ThreadConfiguration


    Preconditions.checkNotNull (configuration);
    this.cloudlet = cloudlet;
    this.configuration = configuration;
    this.callback = callback;
    this.context = context;
    final ThreadConfiguration executorConfiguration = threading.getThreadConfiguration ().override (this, "tasks", true, exceptions, UncaughtExceptionHandler.create (exceptions));
    this.executor = threading.createFixedThreadPool (executorConfiguration, 1);
    this.transcript = Transcript.create (this, true);
    this.transcript.traceDebugging ("creating the cloudlet executor...");
    this.transcript.traceDebugging ("used by the cloudlet `%{object}`...", this.cloudlet);
    this.transcript.traceDebugging ("using the completion callbacks `%{object}`...", this.callback);
View Full Code Here

TOP

Related Classes of eu.mosaic_cloud.tools.threading.core.ThreadConfiguration

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.