Package org.eobjects.analyzer.job.concurrent

Examples of org.eobjects.analyzer.job.concurrent.TaskRunner


  private DCPanel getPerformanceTab() {
    DCPanel panel = new DCPanel(WidgetUtils.BG_COLOR_BRIGHT, WidgetUtils.BG_COLOR_BRIGHTEST);

    int row = 0;

    TaskRunner taskRunner = _configuration.getTaskRunner();
    WidgetUtils.addToGridBag(new JLabel("Task runner type:"), panel, 0, row);
    WidgetUtils.addToGridBag(new JLabel(taskRunner.getClass().getSimpleName()), panel, 1, row);
    WidgetUtils
        .addToGridBag(
            new HelpIcon(
                "The task runner is used to determine the execution strategy of Analysis jobs. The most common strategy for this is to use a multithreaded task runner which will spawn several threads to enable concurrent execution of jobs."),
            panel, 2, row);
View Full Code Here

TOP

Related Classes of org.eobjects.analyzer.job.concurrent.TaskRunner

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.