Class DeferringExecutorService
- java.lang.Object
-
- jetbrains.buildServer.serverSide.impl.executors.DeferringExecutorService
-
- All Implemented Interfaces:
Executor,ExecutorService
- Direct Known Subclasses:
DeferringScheduledExecutorService
public class DeferringExecutorService extends Object implements ExecutorService
-
-
Constructor Summary
Constructors Constructor Description DeferringExecutorService(ScalingThreadPoolExecutor delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanawaitTermination(long timeout, TimeUnit unit)voidenableExecution()voidexecute(Runnable command)ScalingThreadPoolExecutorgetUnderlyingExecutorService()<T> List<Future<T>>invokeAll(Collection<? extends Callable<T>> tasks)<T> List<Future<T>>invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)<T> TinvokeAny(Collection<? extends Callable<T>> tasks)<T> TinvokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)booleanisShutdown()booleanisTerminated()voidshutdown()voidshutdownInt()List<Runnable>shutdownNow()voidshutdownNowInt()Future<?>submit(Runnable task)<T> Future<T>submit(Runnable task, T result)<T> Future<T>submit(Callable<T> task)
-
-
-
Constructor Detail
-
DeferringExecutorService
public DeferringExecutorService(@NotNull ScalingThreadPoolExecutor delegate)
-
-
Method Detail
-
shutdown
public void shutdown()
- Specified by:
shutdownin interfaceExecutorService
-
shutdownNow
@NotNull public List<Runnable> shutdownNow()
- Specified by:
shutdownNowin interfaceExecutorService
-
shutdownInt
public void shutdownInt()
-
shutdownNowInt
public void shutdownNowInt()
-
isShutdown
public boolean isShutdown()
- Specified by:
isShutdownin interfaceExecutorService
-
isTerminated
public boolean isTerminated()
- Specified by:
isTerminatedin interfaceExecutorService
-
awaitTermination
public boolean awaitTermination(long timeout, @NotNull TimeUnit unit) throws InterruptedException- Specified by:
awaitTerminationin interfaceExecutorService- Throws:
InterruptedException
-
submit
public Future<?> submit(@NotNull Runnable task)
- Specified by:
submitin interfaceExecutorService
-
submit
public <T> Future<T> submit(@NotNull Runnable task, T result)
- Specified by:
submitin interfaceExecutorService
-
submit
public <T> Future<T> submit(@NotNull Callable<T> task)
- Specified by:
submitin interfaceExecutorService
-
invokeAll
@NotNull public <T> List<Future<T>> invokeAll(@NotNull Collection<? extends Callable<T>> tasks) throws InterruptedException
- Specified by:
invokeAllin interfaceExecutorService- Throws:
InterruptedException
-
invokeAll
@NotNull public <T> List<Future<T>> invokeAll(@NotNull Collection<? extends Callable<T>> tasks, long timeout, @NotNull TimeUnit unit) throws InterruptedException
- Specified by:
invokeAllin interfaceExecutorService- Throws:
InterruptedException
-
invokeAny
@NotNull public <T> T invokeAny(@NotNull Collection<? extends Callable<T>> tasks) throws InterruptedException, ExecutionException- Specified by:
invokeAnyin interfaceExecutorService- Throws:
InterruptedExceptionExecutionException
-
invokeAny
public <T> T invokeAny(@NotNull Collection<? extends Callable<T>> tasks, long timeout, @NotNull TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException- Specified by:
invokeAnyin interfaceExecutorService- Throws:
InterruptedExceptionExecutionExceptionTimeoutException
-
enableExecution
public void enableExecution()
-
getUnderlyingExecutorService
@NotNull public ScalingThreadPoolExecutor getUnderlyingExecutorService()
-
-