
org.scijava.thread.ThreadService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scijava-common Show documentation
Show all versions of scijava-common Show documentation
SciJava Common is a shared library for SciJava software. It provides a plugin framework, with an extensible mechanism for service discovery, backed by its own annotation processor, so that plugins can be loaded dynamically. It is used by both ImageJ and SCIFIO.
/*
* #%L
* SciJava Common shared library for SciJava software.
* %%
* Copyright (C) 2009 - 2016 Board of Regents of the University of
* Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
* Institute of Molecular Cell Biology and Genetics.
* %%
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* #L%
*/
package org.scijava.thread;
import java.lang.reflect.InvocationTargetException;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future;
import java.util.concurrent.ThreadFactory;
import org.scijava.Context;
import org.scijava.service.SciJavaService;
/**
* Interface for the thread handling service.
*
* @author Curtis Rueden
*/
public interface ThreadService extends SciJavaService, ThreadFactory {
public enum ThreadContext {
/**
* The thread was spawned by this thread service; i.e., it belongs to the
* same {@link Context}.
*/
SAME,
/**
* The thread was spawned by a SciJava thread service, but not this one;
* i.e., it belongs to a different {@link Context}.
*/
OTHER,
/**
* The thread was not spawned via a SciJava thread service, and its
* {@link Context} is unknown or inapplicable.
*/
NONE
}
/**
* Asynchronously executes the given code in a new thread, as decided by the
* thread service. Typically this means that the service allocates a thread
* from its pool, but ultimately the behavior is implementation-dependent.
* This method returns immediately.
*
* @param code The code to execute.
* @return A {@link Future} that will contain the result once the execution
* has finished. Call {@link Future#get()} to access to the return
* value (which will block until execution has completed).
*/
Future run(Callable code);
/**
* Asynchronously executes the given code in a new thread, as decided by the
* thread service. Typically this means that the service allocates a thread
* from its pool, but ultimately the behavior is implementation-dependent.
* This method returns immediately.
*
* @param code The code to execute.
* @return A {@link Future} that can be used to block until the execution has
* finished. Call {@link Future#get()} to do so.
*/
Future> run(Runnable code);
/**
* Gets the {@link ExecutorService} object used when {@link #run} is called.
*
* @return the {@link ExecutorService}, or null if an {@link ExecutorService}
* is not used in this {@link ThreadService} implementation.
*/
ExecutorService getExecutorService();
/**
* Sets the {@link ExecutorService} object used when {@link #run} is called.
*
* @param executor The {@link ExecutorService} for this {@link ThreadService}
* to use internally for {@link #run} calls.
* @throws UnsupportedOperationException if this {@link ThreadService} does
* not use an {@link ExecutorService} to handle {@link #run} calls.
*/
void setExecutorService(ExecutorService executor);
/**
* Gets whether the current thread is a dispatch thread for use with
* {@link #invoke} and {@link #queue}.
*
* In the case of AWT-based applications (e.g., Java on the desktop), this is
* typically the AWT Event Dispatch Thread (EDT). However, ultimately the
* behavior is implementation-dependent.
*
*
* @return True iff the current thread is considered a dispatch thread.
*/
boolean isDispatchThread();
/**
* Executes the given code in a special dispatch thread, blocking until
* execution is complete.
*
* In the case of AWT-based applications (e.g., Java on the desktop), this is
* typically the AWT Event Dispatch Thread (EDT). However, ultimately the
* behavior is implementation-dependent.
*
*
* @param code The code to execute.
* @throws InterruptedException If the code execution is interrupted.
* @throws InvocationTargetException If an uncaught exception occurs in the
* code during execution.
*/
void invoke(Runnable code) throws InterruptedException,
InvocationTargetException;
/**
* Queues the given code for later execution in a special dispatch thread.
*
* In the case of AWT-based applications (e.g., Java on the desktop), this is
* typically the AWT Event Dispatch Thread (EDT). However, ultimately the
* behavior is implementation-dependent.
*
*
* @param code The code to execute.
*/
void queue(Runnable code);
/**
* Returns the thread that called the specified thread.
*
* This works only on threads which the thread service knows about, of course.
*
*
* @param thread the managed thread, null refers to the current thread
* @return the thread that asked the {@link ThreadService} to spawn the
* specified thread
*/
Thread getParent(Thread thread);
/**
* Analyzes the {@link Context} of the given thread.
*
* @param thread The thread to analyze.
* @return Information about the thread's {@link Context}. Either:
*
* - {@link ThreadContext#SAME} - The thread was spawned by this
* very thread service, and thus shares the same {@link Context}.
* - {@link ThreadContext#OTHER} - The thread was spawned by a
* different thread service, and thus has a different {@link Context}.
*
* - {@link ThreadContext#NONE} - It is unknown what spawned the
* thread, so it is effectively {@link Context}-free.
*
*/
ThreadContext getThreadContext(Thread thread);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy