All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.datacleaner.job.concurrent.TaskRunner Maven / Gradle / Ivy

/**
 * DataCleaner (community edition)
 * Copyright (C) 2014 Neopost - Customer Information Management
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.datacleaner.job.concurrent;

import org.datacleaner.job.tasks.Task;

/**
 * Interface for the work executor in DataCleaner. The {@link TaskRunner} is
 * responsible for executing tasks, typically of rather small sizes. A task
 * runner is an abstraction over such execution details as thread pools, timer
 * services and clustering environments.
 */
public interface TaskRunner {

    /**
     * Submits a {@link Task} and a {@link TaskListener} to the
     * {@link TaskRunner}, that will (eventually) execute it.
     *
     * @param task
     * @param listener
     */
    void run(Task task, TaskListener listener);

    /**
     * Submits a {@link TaskRunnable} to the {@link TaskRunner}, that will
     * (eventually) execute it.
     *
     * @param taskRunnable
     */
    void run(TaskRunnable taskRunnable);

    /**
     * Shuts down the {@link TaskRunner}, cleaning up allocated threads and
     * making it unusable for future use.
     */
    void shutdown();

    /**
     * Offers to 'assist' the {@link TaskRunner} in executing tasks. This will
     * effectively 'steal work' from the task runner and do that work in the
     * current thread. Calling this method may be advantageous in cases where
     * the thread is anyways waiting for tasks in the {@link TaskRunner} to
     * complete.
     */
    void assistExecution();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy